@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
24 lines (23 loc) • 585 B
TypeScript
import { AdaptableMessageType } from './AdaptableMessageType';
import { AdaptableObject } from '../../types';
/**
* Wraps a System Status Message
*/
export interface SystemStatusMessageInfo extends AdaptableObject {
/**
* 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;
}