mirror of
https://github.com/strapi/strapi.git
synced 2025-07-28 19:34:51 +00:00
7 lines
134 B
TypeScript
7 lines
134 B
TypeScript
![]() |
export interface Permission {
|
||
|
action: string;
|
||
|
subject?: string | object | null;
|
||
|
properties?: object;
|
||
|
conditions?: string[];
|
||
|
}
|