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