UNPKG
@kernel-js/auth
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
...
github.com/kernel-js/auth
kernel-js/auth
@kernel-js/auth
/
dist
/
interfaces
/
StorageInterface.d.ts
16 lines
(15 loc)
•
280 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export
default
interface
StorageInterface
{
/** *
@returns
object
*/
get
():
object
;
/** *
@param
{
object
}
data
*
@returns
Promise
*/
store
(
data
:
object
):
Promise
<
any
>;
/** *
@returns
Promise
*/
revoke
():
Promise
<
any
>; }