Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DrKain committed May 30, 2020
1 parent b96a9c5 commit 742aa38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "steam-market-search",
"version": "1.4.0",
"version": "1.4.1",
"description": "A NodeJS package for searching the steam marketplace",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export interface SearchOptions {
/**
* Asset Descriptions used in SearchResult
*/
export interface AssetDescriptions {
export interface AssetDescription {
/** AppID of the game this item is from */
appid: number;
classid: string;
Expand Down Expand Up @@ -89,7 +89,7 @@ export interface SearchResult {
* A collection of additional information about the item.
* May be undefined depending on the game
*/
asset_descriptions: AssetDescriptions;
asset_description: AssetDescription;
/** Sale price of the item in USD */
sale_price_text: string;
}

0 comments on commit 742aa38

Please sign in to comment.