UNPKG
@netology-group/account
Version:
latest (2.5.1)
2.5.1
2.5.0
2.4.0
2.3.1
2.3.0
2.3.0-rc.2
2.3.0-rc.1
2.1.0-rc.4
2.1.0-rc.2
2.1.0-rc.1
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.1.0
1.0.0
account client
github.com/netology-group/account
netology-group/account
@netology-group/account
/
es
/
storage.js.flow
9 lines
(7 loc)
•
168 B
Flow
View Raw
1
2
3
4
5
6
7
8
9
/**
@flow
*/
type Key =
string
export
interface
IAbstractStorage
{
setItem
(
a
: Key,
b
:
string
):
void
;
getItem
(
a
: Key):
string
|
null
;
removeItem
(
a
: Key):
void
; }