-
-
Notifications
You must be signed in to change notification settings - Fork 640
Expand file tree
/
Copy pathenum-root-types.ts
More file actions
38 lines (37 loc) · 951 Bytes
/
enum-root-types.ts
File metadata and controls
38 lines (37 loc) · 951 Bytes
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
/**
* This file was auto-generated by openapi-typescript.
* Do not make direct changes to the file.
*/
export type paths = Record<string, never>;
export type webhooks = Record<string, never>;
export interface components {
schemas: {
/** @enum {string} */
Status: Status;
/** @enum {number} */
Priority: Priority;
Item: {
name?: string;
status?: components["schemas"]["Status"];
priority?: components["schemas"]["Priority"];
};
};
responses: never;
parameters: never;
requestBodies: never;
headers: never;
pathItems: never;
}
export type Item = components['schemas']['Item'];
export type $defs = Record<string, never>;
export enum Status {
active = "active",
inactive = "inactive",
pending = "pending"
}
export enum Priority {
Value1 = 1,
Value2 = 2,
Value3 = 3
}
export type operations = Record<string, never>;