added/fixed headers o-s

https://github.com/borisyankov/DefinitelyTyped/issues/1570
This commit is contained in:
Bartvds
2014-01-24 01:56:27 +01:00
parent 8c07adefeb
commit 709a0363a0
21 changed files with 72 additions and 39 deletions
+3 -2
View File
@@ -1,9 +1,10 @@
// Type definitions for store.js
// store.js exposes a simple API for cross browser local storage
// Project: https://github.com/marcuswestin/store.js/
// Definitions by: Vincent Bortone <https://github.com/vbortone/>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
// store.js exposes a simple API for cross browser local storage
interface StoreJSStatic {
set(key: string, value: any): any;
get(key: string): any;
@@ -17,4 +18,4 @@ interface StoreJSStatic {
deserialize(value: string): any;
}
declare var store: StoreJSStatic;
declare var store: StoreJSStatic;