/** @packageDocumentation * * Nachrichten Interface fuer Komponenten * * @module core/message * @author SB */ export interface IMessage { type: string; source: string; dest: string; action: string; session?: string; dataType?: string; data?: any; error?: any; }