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
/
core
/
IAccessInfo.d.ts
10 lines
(9 loc)
•
218 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
interface
IAccessInfo
{
role
?:
string
|
string
[];
resource
?:
string
|
string
[];
attributes
?:
string
|
string
[];
action
?:
string
;
possession
?:
string
;
denied
?:
boolean
; }
export
{
IAccessInfo
};