UNPKG
@sologence/nestjs-auth
Version:
latest (2.0.1)
2.0.1
1.0.0
## Overview
@sologence/nestjs-auth
/
dist
/
auth
/
interfaces
/
role-config.interface.d.ts
10 lines
(9 loc)
•
203 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
interface
RoleConfig
{
roles
:
string
[];
defaultRole
?:
string
;
adminRole
?:
string
;
superAdminRole
?:
string
; }
export
interface
AuthRoleProvider
{
getRoleConfig
():
RoleConfig
; }