@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
18 lines (17 loc) • 517 B
TypeScript
import * as React from 'react';
import { AdaptableColumnDataType } from '../../types';
export declare const DataTableEditor: ({ fields, dataFormatter, data: initialData, type, labels, }: {
fields: {
label: string;
value: string;
dataType: AdaptableColumnDataType;
readOnly?: boolean;
}[];
type: string;
dataFormatter: (field: string) => string;
data: any;
labels?: {
showIds?: string;
filterPlaceholder?: string;
};
}) => React.JSX.Element;