@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
12 lines (11 loc) • 661 B
TypeScript
import * as React from 'react';
import { SharedEntityRowProps } from '../Components/SharedProps/ConfigEntityRowProps';
import { AlertDefinition } from '../../AdaptableState/AlertState';
import { AdaptableMessageType } from '../../AdaptableState/Common/AdaptableMessageType';
export interface AlertEntityRowProps extends SharedEntityRowProps<AlertEntityRow> {
onChangeMessageType: (alertDefinition: AlertDefinition, Type: AdaptableMessageType) => void;
}
export declare class AlertEntityRow extends React.Component<AlertEntityRowProps, {}> {
render(): any;
onMessageTypeChanged(alertDefinition: AlertDefinition, value: AdaptableMessageType): void;
}