mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-11 11:50:54 +08:00
added/fixed headers o-s
https://github.com/borisyankov/DefinitelyTyped/issues/1570
This commit is contained in:
Vendored
+3
-2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user