UNPKG

@adaptabletools/adaptable

Version:

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

10 lines (9 loc) 537 B
import * as React from 'react'; import { Report } from '../../../AdaptableState/ExportState'; import { AdaptableApi } from '../../../types'; export type ReportRowsWizardSectionProps = { onChange: (data: Report) => void; }; export declare const isValidReportRowsQuery: (report: Report) => true | "Rows query cannot be empty"; export declare const renderReportRowsSummary: (report: Report, api: AdaptableApi) => React.ReactNode; export declare const ReportRowsWizardSection: (props: ReportRowsWizardSectionProps) => React.JSX.Element;