UNPKG
intro.js
Version:
latest (7.2.0)
next (8.2.0-beta.1)
8.2.0-beta.1
8.1.0-beta.1
8.0.0-beta.1
7.2.0
7.1.0
7.0.1
7.0.0
6.0.0
5.1.0
5.0.0
4.3.0
4.2.2
4.2.1
4.2.0
4.1.0
4.0.0
3.4.0
3.3.1
3.3.0
3.2.1
3.2.0
3.1.0
3.0.1
3.0.0-beta.1
2.9.3
2.9.2
2.9.1
2.9.0
2.8.0-alpha.1
2.7.0
2.6.0
2.5.0
2.4.0
2.3.0
2.2.0
2.1.0
2.0.0
1.1.1
1.1.0
0.9.0
0.6.0
User Onboarding and Product Walkthrough Library
introjs.com
usablica/intro.js
intro.js
/
src
/
util
/
cookie.d.ts
7 lines
(6 loc)
•
276 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
declare
function
setCookie
(
name
:
string
,
value
:
string
,
days
?:
number
):
string
;
export
declare
function
getAllCookies
(
): { [
name
:
string
]:
string
; };
export
declare
function
getCookie
(
name
:
string
):
string
;
export
declare
function
deleteCookie
(
name
:
string
):
void
;