UNPKG

tslint-clean-code

Version:
10 lines (9 loc) 210 B
export interface IRole { requiredProps: string[]; additionalSupportedProps: string[]; isAbstract: boolean; } export interface IRoleSchema { roles: IRole[]; globalSupportedProps: string[]; }