UNPKG
accessibility-comms
Version:
latest (5.0.7)
5.0.7
add accessibility to your website
accessibility-comms
/
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
; }