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 e999e0f commit 65cb713
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 3 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"license": "Unlicense",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts" : {
"scripts": {
"build": "tsc --outDir dist/",
"prepublishOnly": "npm run build"
},
Expand All @@ -23,7 +23,7 @@
"@types/node": "^8.0.9",
"typescript": "^2.0"
},
"publishConfig":{
"registry":"https://skimdb.npmjs.com/registry"
"publishConfig": {
"registry": "https://skimdb.npmjs.com/registry"
}
}
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 65cb713

Please sign in to comment.