- default(): {
clear(): void;
getItem(key: string): any;
hasOwnProperty(key: string): boolean;
removeItem(key: string): void;
setItem(key: string, value: string): void;
} Returns {
clear(): void;
getItem(key: string): any;
hasOwnProperty(key: string): boolean;
removeItem(key: string): void;
setItem(key: string, value: string): void;
}
clear:function
- clear(): void
Returns void
getItem:function
- getItem(key): any
Returns any
hasOwnProperty:function
- hasOwnProperty(key): boolean
Returns boolean
removeItem:function
- removeItem(key): void
Returns void
setItem:function
- setItem(key, value): void
Returns void