@eclipse-scout/core
Version:
Eclipse Scout runtime
9 lines • 379 B
TypeScript
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