UNPKG

cs2-cdn

Version:

Retrieves the Steam CDN Image URLs for CS2/CS:GO Items

13 lines (12 loc) 242 B
type Data<T> = { [key: string]: T; }; export default class Store<T> { #private; data: Data<T>; path: string; constructor(path: string); getValue(key: string): T; setValue(key: string, value: T): void; } export {};