role.ts 157 B

12345678
  1. export interface role {
  2. id: string;
  3. isForbidden: boolean | null;
  4. label: string;
  5. previousLabel?: string;
  6. userCount: number;
  7. [key: string]: any;
  8. }