UNPKG

@adaptabletools/adaptable

Version:

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

18 lines (17 loc) 951 B
import { ViewPanelProps } from '../Components/SharedProps/ViewPanelProps'; import { SystemStatusMessageInfo } from '../../AdaptableState/Common/SystemStatusMessageInfo'; import * as React from 'react'; export interface SystemStatusViewPanelComponentProps extends ViewPanelProps { SystemStatusMessageInfos: SystemStatusMessageInfo[]; } declare class SystemStatusViewPanelComponent extends React.Component<SystemStatusViewPanelComponentProps, {}> { constructor(props: SystemStatusViewPanelComponentProps); render(): React.JSX.Element; } export declare let SystemStatusViewPanel: import("react-redux").ConnectedComponent<typeof SystemStatusViewPanelComponent, { ref?: React.Ref<SystemStatusViewPanelComponent>; key?: React.Key; context?: React.Context<import("react-redux").ReactReduxContextValue<any, import("redux").UnknownAction>>; store?: import("redux").Store<any, import("redux").UnknownAction, unknown>; }>; export {};