import type { Type } from '../../types.ts'; import type { IEvent } from './event.interface'; export interface EventIdProvider { getEventId(event: Type): null | string; }