Files
DefinitelyTyped/lscache/lscache.d.ts
Chris Martinez 49e799b01b Fix lscache header
Fix lscache header so npm test passes.
2014-11-11 12:33:12 -05:00

13 lines
392 B
TypeScript

// Type definitions for lscache v1.0.2
// Project: https://github.com/pamelafox/lscache
// Definitions by: Chris Martinez <https://github.com/Chris-Martinezz>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
interface LSCache {
set(key: string, value: any, time?: number): void;
get(key: string): any;
remove(key: string): void;
}
declare var lscache: LSCache;