UNPKG

@adaptabletools/adaptable-cjs

Version:

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

11 lines (10 loc) 569 B
import * as React from 'react'; import { CustomSort } from '../../../AdaptableState/CustomSortState'; export type CustomSortColumnWizardSectionProps = { onChange: (data: CustomSort) => void; isNew: boolean; allCustomSorts: CustomSort[]; }; export declare const renderCustomSortColumn: (data: CustomSort) => React.JSX.Element; export declare const isValidCustomSortColumn: (data: CustomSort, allCustomSorts: CustomSort[]) => true | string; export declare const CustomSortColumnWizardSection: (props: CustomSortColumnWizardSectionProps) => React.JSX.Element;