UNPKG

typescript-closure-tools

Version:

Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files

21 lines (16 loc) 675 B
// Type definitions for jQueryTotalStorage 1.1.2 // Project: https://github.com/Upstatement/jquery-total-storage // Definitions by: Jeremy Brooks <https://github.com/JeremyCBrooks/> // Definitions: https://github.com/borisyankov/DefinitelyTyped /// <reference path="../jquery/jquery.d.ts"/> /// <reference path="jquery.total-storage.d.ts"/> //direct call $.totalStorage("test_key1", "test_value"); var val1:string = $.totalStorage("test_key"); //set/get $.totalStorage.setItem("test_key2", 123); var val2:number = $.totalStorage.getItem("test_key2"); //get all items var list = $.totalStorage.getAll(); //delete item var deleted = $.totalStorage.deleteItem("test_key1");