ssn/src/interfaces/IManifest.ts
2018-11-16 02:04:09 +01:00

11 lines
328 B
TypeScript

import IManifestRelease from './IManifestRelease';
/** A patch manifest, containing a list of releases, how to patch them, and which one the current release is. */
export default interface IManifest {
/** Current release. */
current: number;
/** List of releases. */
releases: {
[s: string]: IManifestRelease;
};
}