UNPKG

@adaptabletools/adaptable

Version:

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

22 lines (21 loc) 822 B
import { Report } from '../../../AdaptableState/ExportState'; import * as React from 'react'; import { AdaptableWizardStep, AdaptableWizardStepProps } from '../../Wizard/Interface/IAdaptableWizard'; export interface ReportSettingsWizardProps extends AdaptableWizardStepProps<Report> { Reports: Report[]; } export interface ReportSettingsWizardState { ReportName: string; ErrorMessage: string; } export declare class ReportSettingsWizard extends React.Component<ReportSettingsWizardProps, ReportSettingsWizardState> implements AdaptableWizardStep { constructor(props: ReportSettingsWizardProps); render(): any; private onReportNameChanged; canNext(): boolean; canBack(): boolean; next(): void; back(): void; getIndexStepIncrement(): number; getIndexStepDecrement(): 1 | 2; }