AdaptableAlertBase
Defines the base(common) properties of an Alert fired by AdapTable, regardless of the type of change
TypeScript
export interface AdaptableAlertBase<T> extendsExtends
Properties
| Property | Description |
|---|---|
| alertDefinition | Rule that caused Alert to fire |
| alertType | The type of Alert |
| header | Alert Header text |
| message | Alert Body text |
Property Details
alertDefinition
Rule that caused Alert to fire
TypeScript
alertDefinition: AlertDefinition;Property Value
alertType
The type of Alert
TypeScript
alertType: T;Property Value
T
header
Alert Header text
TypeScript
header: string;Property Value
string
message
Alert Body text
TypeScript
message: string;Property Value
string