UNPKG
@minimaltech/ra-infra
Version:
latest (0.0.7)
next (0.0.8-1)
0.0.8-1
0.0.8-0
0.0.7
0.0.7-11
0.0.7-10
0.0.7-9
0.0.7-8
0.0.7-7
0.0.7-6
0.0.7-5
0.0.7-4
0.0.7-3
0.0.7-2
0.0.7-1
0.0.7-0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
Minimal Technology ReactJS Infrastructure
github.com/phatnt199/ra-infra/wiki
phatnt199/ra-infra
@minimaltech/ra-infra
/
dist
/
base
/
services
/
default-auth.service.d.ts
15 lines
(14 loc)
•
300 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
declare
class
DefaultAuthService
{
getUser
(): any;
getRoles
(): Set<
string
>;
getAuth
(): any;
saveAuth
(
opts
: {
userId
: number;
username
:
string
;
token
: {
value
:
string
;
type
:
string
; }; }):
void
;
cleanUp
():
void
; }