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
/
es
/
getCookie.d.ts
10 lines
(9 loc)
•
245 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** *
@description
获取Cookie *
@param
{
String
} name cookie名称 *
@returns
{
(Array | Null)
} 返回数据 *
@example
* getCookie('test') */
declare
function
getCookie
(
name
?:
string
):
string
|
any
;
export
default
getCookie;