UNPKG
usedjs
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
0.3.5
0.3.4
used.js 是一个轻量级小巧的可运行在浏览器中的 JavaScript 函数库
github.com/icepy/used
icepy/used
usedjs
/
lib
/
cookie.d.ts
5 lines
(4 loc)
•
242 B
TypeScript
View Raw
1
2
3
4
5
export
declare
function
get
(
key
:
string
):
any
;
export
declare
function
getJSON
(
key
:
string
):
any
;
export
declare
function
set
(
key
:
string
,
value
:
any
,
attributes
?: {}
):
any
;
export
declare
function
remove
(
key
:
string
,
attributes
?:
any
):
any
;