UNPKG
@cachemap/web-storage
Version:
latest (5.2.0)
unstable-12345 (5.2.1-unstable-12345.2)
5.2.1-unstable-12345.2
5.2.1-unstable-12345.1
5.2.1-unstable-12345.0
5.2.0
5.1.5
5.1.4
5.1.3
5.1.2
5.1.1
5.1.0
The Cachemap web storage module.
github.com/badbatch/cachemap
badbatch/cachemap
@cachemap/web-storage
/
src
/
types.ts
11 lines
(8 loc)
•
203 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
type
ConstructorOptions
=
InitOptions
;
export
interface
InitOptions
extends
Options
{
name
:
string
; }
export
interface
Options
{
maxHeapSize
?:
number
;
storageType
?:
'local'
|
'session'
; }