UNPKG

steamapi

Version:
8 lines (7 loc) 194 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; }