UNPKG
@daystram/ratify-client
Version:
latest (1.4.0)
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
Ratify OAuth Client
github.com/daystram/ratify-client-js
daystram/ratify-client-js
@daystram/ratify-client
/
dist
/
storage
/
ITokenStorage.d.ts
6 lines
(5 loc)
•
170 B
TypeScript
View Raw
1
2
3
4
5
6
export
interface
ITokenStorage
{
getItem
:
(
key
:
string
) =>
string
|
null
;
setItem
:
(
key
:
string
,
value
:
string
) =>
void
;
removeItem
:
(
key
:
string
) =>
void
; }