UNPKG
@tbea_npm/sdk
Version:
latest (2.0.6)
2.0.6
2.0.5
2.0.2
WorkPlusFE JavaScript SDK.
@tbea_npm/sdk
/
types
/
storage.d.ts
8 lines
(7 loc)
•
200 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** Storage Type */
export
declare
type
StorageType
=
'localStorage'
|
'sessionStorage'
;
export
interface
StorageOptions
{
prefix
?:
string
;
connector
?:
string
;
type
:
StorageType
; }