UNPKG

@pilotlab/lux-tools

Version:

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

13 lines (8 loc) 262 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; } // End interface export default ICache;