UNPKG

229 BTypeScriptView Raw
1export interface CmdOption {
2 readonly desc: string;
3 readonly alias?: string;
4}
5export interface CmdMap {
6 readonly [commandName: string]: CmdOption;
7}
8declare const BUILD_OPTIONS: CmdMap;
9export default BUILD_OPTIONS;