UNPKG
ts-access-control
Version:
latest (0.1.20)
0.1.20
0.1.19
0.1.18
0.1.1
0.0.1
Role Based Access Control
nicolaspearson/ts-access-control
ts-access-control
/
lib
/
src
/
interfaces
/
IAccessInfo.d.ts
9 lines
(8 loc)
•
201 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
interface
IAccessInfo
{
role
?:
string
|
string
[];
resource
?:
string
|
string
[];
attributes
?:
string
|
string
[];
action
?:
string
;
possession
?:
string
;
denied
?:
boolean
; }