UNPKG

@ra-libs/react-rbac

Version:

React admin RBAC front components and utils

13 lines (12 loc) 238 B
export * from './CASL'; export type Permission = { action: string; subject: string; conditions?: JSON; inverted?: boolean; fields?: string[]; }; export type Role = { name: string; permissions: Permission[]; };