UNPKG

@adaptabletools/adaptable

Version:

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

13 lines (12 loc) 438 B
import * as React from 'react'; import { AdaptableColumn } from '../../../types'; type NewColumnSelectorProps = { availableColumns: AdaptableColumn[]; selected: string[]; singleSelect?: boolean; columnFilterText?: string; allowReorder?: boolean; onChange?: (colIds: string[]) => void; }; export declare const NewColumnSelector: ({ allowReorder, ...props }: NewColumnSelectorProps) => React.JSX.Element; export {};