@newos/cli
Version:
Command-line interface for the NewOS
10 lines • 315 B
TypeScript
export declare type Choice = string | {
name: string;
value: string;
short?: string;
} | {
type: 'separator';
};
export declare type ContractsSource = 'built' | 'notAdded' | 'added' | 'all';
export declare function contracts(source?: ContractsSource): Choice[];
//# sourceMappingURL=choices.d.ts.map