import type { DomainType } from '../contstants'; import type { DomainEventBaseContext } from '../types-base'; export interface Realm { id: string; name: string; description: string | null; drop_able: boolean; created_at: string; updated_at: string; } export type RealmEventContext = DomainEventBaseContext & { type: `${DomainType.REALM}`; data: Realm; }; //# sourceMappingURL=types.d.ts.map