UNPKG

steam-api-sdk

Version:

A Node.js wrapper for the Steam Web API, includes many tools for fetching and parsing data from the Steam Web API.

12 lines (9 loc) 228 B
const config: IConfig = { apiKey: process.env.STEAM_API_KEY || null, debugMode: process.env.DEBUG_MODE === 'true' || false, } interface IConfig { apiKey: string | string[] | null debugMode: boolean } export default config