UNPKG

@adaptabletools/adaptable-cjs

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

24 lines (23 loc) 579 B
import { AdaptableMessageType } from './AdaptableMessageType'; import { Identifiable } from '../../types'; /** * Wraps a System Status Message */ export interface SystemStatusMessageInfo extends Identifiable { /** * The Message to be displayed */ statusMessage: string; /** * Additional information to display (optional) */ statusFurtherInformation?: string; /** * Type of Message i.e. Succcess, Warning, Error, Info */ statusType: AdaptableMessageType; /** * When Message was sent */ timestamp?: Date; }