smartcli/ts/smartcli.interfaces.ts

23 lines
373 B
TypeScript
Raw Normal View History

2016-06-10 00:27:04 +00:00
import "typings-global";
export interface CliCommand {
specified: boolean;
name: string;
arguments:CliCommandArgument[];
}
2016-05-12 01:27:45 +00:00
export interface CliOption {
2015-11-05 20:43:34 +00:00
name: string;
specified:boolean;
value: any;
}
2016-05-12 01:27:45 +00:00
export interface Directory {
2015-11-05 20:43:34 +00:00
path: string;
}
2016-05-12 01:27:45 +00:00
export interface CliCommandArgument {
2015-11-05 20:43:34 +00:00
specified:boolean;
name:string;
level:number;
2016-05-12 01:27:45 +00:00
}