steamapi
Version:
A nice Steam API wrapper.
15 lines (14 loc) • 462 B
TypeScript
import GameInfo from './GameInfo.js';
export default class GameInfoExtended extends GameInfo {
/** If this game has a workshop */
hasWorkshop: boolean;
/** If this game has a market */
hasMarket: boolean;
/** If this game has DLC */
hasDLC: boolean;
/** Game's capsule filename. Not sure what this means */
capsuleFilename?: string;
/** Name that this game is sorted by */
sortName?: string;
constructor(data: any);
}