@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
9 lines (8 loc) • 491 B
TypeScript
import * as React from 'react';
import { CustomSort } from '../../../AdaptableState/CustomSortState';
export type CustomSortValuesWizardSectionProps = {
onChange: (data: CustomSort) => void;
};
export declare const isValidCustomSortOrder: (data: CustomSort) => true | string;
export declare const renderCustomSortValuesSummary: (data: CustomSort) => React.JSX.Element;
export declare const CustomSortValuesWizardSection: (props: CustomSortValuesWizardSectionProps) => React.JSX.Element;