File tree Expand file tree Collapse file tree 2 files changed +60
-0
lines changed Expand file tree Collapse file tree 2 files changed +60
-0
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * This file was auto-generated by openapi-typescript.
3
+ * Do not make direct changes to the file.
4
+ */
5
+
6
+ export interface paths {
7
+ "/test" : {
8
+ get : {
9
+ responses : {
10
+ /** A list of types. */
11
+ 200 : unknown ;
12
+ } ;
13
+ } ;
14
+ } ;
15
+ }
16
+
17
+ export interface components {
18
+ schemas : {
19
+ /** @description Enum with null and nullable */
20
+ Example : {
21
+ emptyAllOf ?: { [ key : string ] : unknown } ;
22
+ emptyOneOf ?: undefined & { [ key : string ] : unknown } ;
23
+ emptyAnyOf ?: { [ key : string ] : unknown } ;
24
+ } & { [ key : string ] : unknown } ;
25
+ } ;
26
+ }
27
+
28
+ export interface operations { }
29
+
30
+ export interface external { }
Original file line number Diff line number Diff line change
1
+ /**
2
+ * This file was auto-generated by openapi-typescript.
3
+ * Do not make direct changes to the file.
4
+ */
5
+
6
+ export interface paths {
7
+ readonly "/test" : {
8
+ readonly get : {
9
+ readonly responses : {
10
+ /** A list of types. */
11
+ readonly 200 : unknown ;
12
+ } ;
13
+ } ;
14
+ } ;
15
+ }
16
+
17
+ export interface components {
18
+ readonly schemas : {
19
+ /** @description Enum with null and nullable */
20
+ readonly Example : {
21
+ readonly emptyAllOf ?: undefined ;
22
+ readonly emptyOneOf ?: undefined ;
23
+ readonly emptyAnyOf ?: undefined ;
24
+ } ;
25
+ } ;
26
+ }
27
+
28
+ export interface operations { }
29
+
30
+ export interface external { }
You can’t perform that action at this time.
0 commit comments