import type { DomainType } from '../contstants'; import type { Realm } from '../realm'; import type { DomainEventBaseContext } from '../types-base'; export interface Role { id: string; name: string; target: string | null; description: string | null; realm_id: Realm['id'] | null; realm: Realm | null; created_at: string; updated_at: string; } export type RoleEventContext = DomainEventBaseContext & { type: `${DomainType.ROLE}`; data: Role; }; //# sourceMappingURL=types.d.ts.map