UNPKG
@cimo/jsmvcfw
Version:
latest (1.6.42)
1.6.42
1.5.42
1.5.41
1.5.39
1.5.38
1.5.37
1.5.36
1.4.36
1.4.35
1.4.34
1.4.33
1.4.32
1.4.31
1.4.30
1.4.29
1.4.28
1.4.27
1.4.26
1.4.25
1.4.24
1.4.23
1.4.22
1.3.22
1.3.21
1.3.20
1.3.19
1.3.18
1.3.17
1.3.16
1.3.15
1.3.14
1.3.13
1.3.12
1.3.11
1.2.11
1.1.11
1.1.10
1.1.9
1.1.8
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.0.2
1.0.1
1.0.0
Javascript mvc framework. Light, fast and secure.
github.com/cimo/Npm_jsMvcFw
cimo/Npm_jsMvcFw
@cimo/jsmvcfw
/
dist
/
src
/
JsMvcFwStorage.d.ts
4 lines
(3 loc)
•
199 B
TypeScript
View Raw
1
2
3
4
export
declare
const
writeStorage
: <T>
(
tag
:
string
,
value
: T
) =>
void
;
export
declare
const
readStorage
: <T>
(
tag
:
string
) =>
T |
undefined
;
export
declare
const
deleteStorage
:
(
tag
:
string
) =>
void
;