()
| 30 | export interface ILsStore { |
| 31 | clear(): ILsStore; |
| 32 | clearAll(): ILsStore; |
| 33 | each(callback: (key: any, data: any) => false | any): ILsStore; |
| 34 | get(key: any, alt?: any): any; |
| 35 | getAll(fillObj?: IStoredData): IStoredData; |
no outgoing calls
no test coverage detected