fork of hey-api/openapi-ts because I need some additional things
1import type { PluginNames } from '@hey-api/shared';
2import type { MaybeArray } from '@hey-api/types';
3
4import type { PluginClientNames } from '../plugins/types';
5
6export interface CliOptions {
7 client?: PluginClientNames;
8 debug?: boolean;
9 dryRun?: boolean;
10 file?: string;
11 input?: MaybeArray<string>;
12 logFile?: boolean;
13 logs?: string;
14 output?: MaybeArray<string>;
15 plugins?: ReadonlyArray<PluginNames>;
16 silent?: boolean;
17 watch?: boolean | string;
18}