import type { Client } from '../client'; import type { DomainType } from '../contstants'; import type { Scope } from '../scope'; import type { DomainEventBaseContext } from '../types-base'; export interface ClientScope { id: string; default: boolean; client_id: Client['id']; client: Client; scope_id: Scope['id']; scope: Scope; } export type ClientScopeEventContext = DomainEventBaseContext & { type: `${DomainType.CLIENT_SCOPE}`; data: ClientScope; }; //# sourceMappingURL=types.d.ts.map