import type { Rights } from './rights'; export interface Role { id?: number; role: string; rights: Rights | null; } export type Roles = Role[];