UNPKG

tslint-clean-code

Version:
17 lines (15 loc) 278 B
/** * Interface of role. */ export interface IRole { requiredProps: string[]; additionalSupportedProps: string[]; isAbstract: boolean; } /** * Interface of role schema. */ export interface IRoleSchema { roles: IRole[]; globalSupportedProps: string[]; }