@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) • 505 B
TypeScript
import * as React from 'react';
import { CustomSort } from '../../../AdaptableState/CustomSortState';
export type CustomSortColumnWizardSectionProps = {
onChange: (data: CustomSort) => void;
isNew: boolean;
};
export declare const renderCustomSortColumn: (data: CustomSort) => React.JSX.Element;
export declare const isValidCustomSortColumn: (data: CustomSort) => true | string;
export declare const CustomSortColumnWizardSection: (props: CustomSortColumnWizardSectionProps) => React.JSX.Element;