Skip to content

Commit

Permalink
samples updates - samples/client/petstore/typescript-fetch/builds/es6…
Browse files Browse the repository at this point in the history
…-target
  • Loading branch information
ralphdoe authored and frantuma committed Nov 7, 2018
1 parent 32b0bcc commit e999e0f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions samples/client/petstore/typescript-fetch/builds/es6-target/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,26 @@ export class RequiredError extends Error {
}
}

/**
* some description
* @export
* @interface Amount
*/
export interface Amount {
/**
* some description
* @type {number}
* @memberof Amount
*/
value: number;
/**
*
* @type {Currency}
* @memberof Amount
*/
currency: Currency;
}

/**
* Describes the result of uploading an image resource
* @export
Expand Down Expand Up @@ -124,6 +144,14 @@ export interface Category {
name?: string;
}

/**
* some description
* @export
* @interface Currency
*/
export interface Currency {
}

/**
* An order for a pets from the pet store
* @export
Expand Down

0 comments on commit e999e0f

Please sign in to comment.