forked from ferdikoomen/openapi-typescript-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
41 lines (36 loc) · 917 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
export declare enum HttpClient {
FETCH = 'fetch',
XHR = 'xhr',
NODE = 'node',
AXIOS = 'axios',
ANGULAR = 'angular',
}
export declare enum Indent {
SPACE_4 = '4',
SPACE_2 = '2',
TAB = 'tab',
}
export type Options = {
input: string | Record<string, any>;
output: string;
httpClient?: HttpClient | 'fetch' | 'xhr' | 'node' | 'axios' | 'angular';
clientName?: string;
useOptions?: boolean;
useUnionTypes?: boolean;
useJsonld?: boolean;
exportCore?: boolean;
exportServices?: boolean;
exportModels?: boolean;
exportSchemas?: boolean;
indent?: Indent | '4' | '2' | 'tab';
postfix?: string;
request?: string;
write?: boolean;
};
export declare function generate(options: Options): Promise<void>;
declare type OpenAPI = {
HttpClient: HttpClient;
Indent: Indent;
generate: typeof generate;
};
export default OpenAPI;