UNPKG

@adaptabletools/adaptable

Version:

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

16 lines (15 loc) 671 B
import * as React from 'react'; import { AdaptableWizardStep, AdaptableWizardStepProps } from '../../Wizard/Interface/IAdaptableWizard'; import { CustomSort } from '../../../AdaptableState/CustomSortState'; export interface CustomSortSummaryWizardProps extends AdaptableWizardStepProps<CustomSort> { } export declare class CustomSortSummaryWizard extends React.Component<CustomSortSummaryWizardProps, {}> implements AdaptableWizardStep { constructor(props: CustomSortSummaryWizardProps); render(): any; canNext(): boolean; canBack(): boolean; next(): void; back(): void; getIndexStepIncrement(): number; getIndexStepDecrement(): number; }