UNPKG

workspace-integrations

Version:
13 lines (12 loc) 294 B
import { Http } from './types'; /** * Cache for remembering values that change relatively seldom, * such as device and workspace metadata. */ declare class Cache { private store; fetch(http: Http, url: string): Promise<any>; private get; private set; } export default Cache;