Files
DefinitelyTyped/lscache/lscache-tests.ts
Chris Martinez 9cd13294ae Added lscache definition
Added lscache definition
2014-11-11 12:24:13 -05:00

13 lines
319 B
TypeScript

/// <reference path="lscache.d.ts" />
// Copied examples directly from lscache github site with slight modifications
lscache.set('greeting', 'Hello World!', 2);
alert(lscache.get('greeting'));
lscache.remove('greeting');
lscache.set('data', { 'name': 'Pamela', 'age': 26 }, 2);
alert(lscache.get('data').name);