Skip to content

Commit e999e0f

Browse files
ralphdoefrantuma
authored andcommitted
samples updates - samples/client/petstore/typescript-fetch/builds/es6-target
1 parent 32b0bcc commit e999e0f

File tree

1 file changed

+28
-0
lines changed
  • samples/client/petstore/typescript-fetch/builds/es6-target

1 file changed

+28
-0
lines changed

samples/client/petstore/typescript-fetch/builds/es6-target/api.ts

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,26 @@ export class RequiredError extends Error {
7878
}
7979
}
8080

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+
81101
/**
82102
* Describes the result of uploading an image resource
83103
* @export
@@ -124,6 +144,14 @@ export interface Category {
124144
name?: string;
125145
}
126146

147+
/**
148+
* some description
149+
* @export
150+
* @interface Currency
151+
*/
152+
export interface Currency {
153+
}
154+
127155
/**
128156
* An order for a pets from the pet store
129157
* @export

0 commit comments

Comments
 (0)