File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
samples/client/petstore/typescript-fetch/builds/es6-target Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,26 @@ export class RequiredError extends Error {
78
78
}
79
79
}
80
80
81
+ /**
82
+ * some description
83
+ * @export
84
+ * @interface Amount
85
+ */
86
+ export interface Amount {
87
+ /**
88
+ * some description
89
+ * @type {number }
90
+ * @memberof Amount
91
+ */
92
+ value : number ;
93
+ /**
94
+ *
95
+ * @type {Currency }
96
+ * @memberof Amount
97
+ */
98
+ currency : Currency ;
99
+ }
100
+
81
101
/**
82
102
* Describes the result of uploading an image resource
83
103
* @export
@@ -124,6 +144,14 @@ export interface Category {
124
144
name ?: string ;
125
145
}
126
146
147
+ /**
148
+ * some description
149
+ * @export
150
+ * @interface Currency
151
+ */
152
+ export interface Currency {
153
+ }
154
+
127
155
/**
128
156
* An order for a pets from the pet store
129
157
* @export
You can’t perform that action at this time.
0 commit comments