UNPKG
isa-auth-core
Version:
latest (0.0.1)
0.0.1
0.0.0
auth core
github.com/yoonjonglyu/isa-auth
yoonjonglyu/isa-auth
isa-auth-core
/
dist
/
providers
/
authProvider.d.ts
8 lines
(7 loc)
•
181 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
interface
AuthProvider
{
init
():
Promise
<
void
>;
signIn
():
void
;
signOut
():
void
;
getAccessToken
():
Promise
<
string
|
null
>;
getUserInfo
():
Promise
<
any
>; }