@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
9 lines (8 loc) • 473 B
TypeScript
import * as React from 'react';
import { Report } from '../../../AdaptableState/ExportState';
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) => React.JSX.Element;
export declare const ReportRowsWizardSection: (props: ReportRowsWizardSectionProps) => React.JSX.Element;