20 lines
375 B
TypeScript
20 lines
375 B
TypeScript
import "typings-global";
|
|
export interface CliCommand {
|
|
specified: boolean;
|
|
name: string;
|
|
arguments: CliCommandArgument[];
|
|
}
|
|
export interface CliOption {
|
|
name: string;
|
|
specified: boolean;
|
|
value: any;
|
|
}
|
|
export interface Directory {
|
|
path: string;
|
|
}
|
|
export interface CliCommandArgument {
|
|
specified: boolean;
|
|
name: string;
|
|
level: number;
|
|
}
|