Files
DefinitelyTyped/lscache/lscache-tests.ts
2016-05-10 12:22:25 -07:00

13 lines
282 B
TypeScript

// 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);