UNPKG

298 BTypeScriptView Raw
1export interface CLIOptions {
2 schema?: string;
3 args?: string[];
4 template?: string;
5 project?: string;
6 out?: string;
7 header?: string[];
8 skipSchema?: any;
9 skipDocuments?: any;
10 config?: string;
11 require?: string[];
12 overwrite?: boolean;
13 watch?: boolean;
14}