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