UNPKG
d-utils
Version:
beta (4.0.0-beta)
latest (4.0.3)
4.0.3
4.0.2
4.0.1
4.0.0
4.0.0-beta
3.0.2
3.0.1
3.0.0
2.3.3
2.3.1
2.3.0
2.2.0
2.1.1
2.1.0
2.0.0
1.4.0
1.3.0
1.2.0
1.1.2
1.1.1
1.1.0
1.0.0
0.0.1
0.0.0
d-utils
d-utils
/
dist
/
cjs
/
removeCookie.d.ts
10 lines
(9 loc)
•
287 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** *
@description
删除Cookie *
@param
{ String } name cookie名称 如果不传参数则设置所有cookie过期 *
@returns
{ Array } 是一个伪数组 *
@example
* removeCookie('test') */
declare
function
removeCookie
(
name:
string
):
any
; export
default
removeCookie;