@adpt/cli
Version:
AdaptJS command line interface
22 lines • 734 B
TypeScript
export declare type VersionString = string;
export interface VersionSummary {
/** Software package name */
name: string;
/** The most current version on each channel */
channelCurrent: {
[channel: string]: VersionString;
};
/** Summary information for each package version */
versions: {
[version: string]: VersionSummaryEntry;
};
}
export interface VersionSummaryEntry {
/** Which channel this version belongs to */
channel: string;
/** User-facing textual description of the content of this version */
description?: string;
/** Whether this version contains fixes for security-related issues */
securityFixes?: boolean;
}
//# sourceMappingURL=versions.d.ts.map