UNPKG

@stnekroman/tstools

Version:

Set of handy tools for TypeScript development

9 lines (7 loc) 216 B
export interface IDictionary<KEY, DATA> { has(cacheKey : KEY) : boolean; get(cacheKey : KEY) : DATA | undefined; set(cacheKey : KEY, data : DATA) : void; delete(cacheKey : KEY): boolean; clear() : void; }