@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
10 lines (9 loc) • 589 B
TypeScript
import * as React from 'react';
import { AdaptableApi } from '../../../Api/AdaptableApi';
import { Report } from '../../../AdaptableState/ExportState';
export type ReportNameWizardSectionProps = {
onChange: (data: Report) => void;
};
export declare const renderReportNameSummary: (report: Report) => React.JSX.Element;
export declare const isValidReportName: (report: Report, api: AdaptableApi) => true | "Report name cannot be empty" | "A Report already exists with that name";
export declare const ReportNameWizardSection: (props: ReportNameWizardSectionProps) => React.JSX.Element;