UNPKG

@eclipse-scout/core

Version:
9 lines 379 B
import { DoEntity, Event, EventHandler, UiNotificationSystem } from '../index'; export interface UiNotificationEvent<TSource = UiNotificationSystem> extends Event<TSource> { id: string; topic: string; creationTime: Date; message?: DoEntity; } export type UiNotificationHandler = EventHandler<UiNotificationEvent>; //# sourceMappingURL=UiNotificationEvent.d.ts.map