UNPKG

soccer-go

Version:

Soccer CLI for stats and results.

9 lines (8 loc) 226 B
export type JSONValue = string | number | boolean | { [x: string]: JSONValue; } | Array<JSONValue>; export default class CacheItem { date: number; data: JSONValue; constructor(date: number, data: JSONValue); }