UNPKG

@pilotlab/lux-tools

Version:

A luxurious user experience framework, developed by your friends at Pilot.

9 lines (8 loc) 249 B
import { IPromise } from '@pilotlab/result'; export interface ICache { get(key: string, isCache?: boolean): IPromise<any>; preLoad(key: string): IPromise<any>; release(key: string): void; releaseAll(): void; } export default ICache;