UNPKG

steamapi

Version:
9 lines (7 loc) 183 B
/** An object representing a steam app with only its name and ID */ export default interface AppBase { /** This app's ID */ appid: number; /** This app's name */ name: string; }