UNPKG

@salesforce/core

Version:

Core libraries to interact with SFDX projects, orgs, and APIs.

12 lines (11 loc) 329 B
export declare class Cache extends Map { #private; private constructor(); static get hits(): number; static get lookups(): number; static instance(): Cache; static set<V>(key: string, value: V): void; static get<V>(key: string): V | undefined; static disable(): void; static enable(): void; }