interface StorageHelper { clear(full: boolean): void; getItem(key: string,
both?: boolean): null | string; prefixedKey(key: string): string; removeItem(key: string,
both?: boolean): void; setItem(key: string,
value: string,
both?: boolean): void; } Methods
clear
- clear(full: boolean): void
Returns void
getItem
- getItem(key: string, both?: boolean): null | string
Parameters
- key: string
Optional
both: boolean
Returns null | string
prefixedKey
- prefixedKey(key: string): string
Returns string
removeItem
- removeItem(key: string, both?: boolean): void
Parameters
- key: string
Optional
both: boolean
Returns void
setItem
- setItem(key: string, value: string, both?: boolean): void
Parameters
- key: string
- value: string
Optional
both: boolean
Returns void
Storage Helper
Use application to prefix data stored in browser storage with helpers for compatibility.