UNPKG

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