UNPKG
accessibility
Version:
latest (6.1.0)
6.1.0
6.0.7
6.0.6
6.0.5
6.0.4
6.0.3
6.0.2
6.0.1
6.0.0
5.1.5
5.1.4
5.1.3
5.1.2
5.1.1
5.1.0
5.0.7
5.0.6
5.0.5
5.0.4
5.0.2
5.0.1
5.0.0
4.5.12
4.5.11
4.5.10
4.5.9
4.5.8
4.5.7
4.5.6
4.5.5
4.5.4
4.5.3
4.5.2
4.5.1
4.5.0
4.4.1
4.4.0
4.3.1
4.3.0
4.2.0
4.1.0
4.0.0
3.0.17
3.0.16
3.0.15
3.0.14
3.0.13
3.0.12
3.0.11
3.0.10
3.0.9
3.0.8
3.0.7
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
2.0.0
1.0.1
1.0.0
0.1.17
0.1.16
0.1.15
0.1.14
0.1.13
0.1.12
0.1.11
0.1.1
0.1.0
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
add accessibility to your website
accessibility
/
dist
/
storage.d.ts
10 lines
(9 loc)
•
228 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
declare
class
Storage
{
constructor
();
has
(
key
:
string
):
boolean
;
set
(
key
:
string
,
value
: any):
void
;
get
(
key
:
string
): any;
clear
():
void
;
remove
(
key
:
string
):
void
;
isSupported
():
boolean
; }