Files
RayLab-Core/src/core/event-bus/event.interface.ts
T
2026-08-02 17:44:50 +07:00

7 lines
141 B
TypeScript

export interface EventEnvelope<T = any> {
id: string;
timestamp: string; // ISO
type: string; // PascalCase event type
payload: T;
}