UNPKG

@netgrif/components-core

Version:

Netgrif Application engine frontend core Angular library

14 lines (13 loc) 292 B
/** * Object from Backend * * Authority: ROLE_USER | ROLE_ADMIN | ROLE_SYSTEMADMIN | Custom Role */ export interface Authority { /** * Spring Boot Role * * **Example:** ROLE_SYSTEMADMIN */ authority: 'ROLE_USER' | 'ROLE_ADMIN' | 'ROLE_SYSTEMADMIN' | string; }