react-tabulator
Version:
React Tabulator is based on tabulator - a JS table library with many advanced features.
17 lines (16 loc) • 554 B
TypeScript
import * as React from 'react';
import { Tabulator as TabulatorTypes } from './types/TabulatorTypes';
export interface ReactTabulatorOptions extends TabulatorTypes.Options {
[k: string]: any;
}
export interface ColumnDefinition extends TabulatorTypes.ColumnDefinition {
}
export interface ReactTabulatorProps {
columns?: ColumnDefinition[];
options?: any;
events?: any;
onRef?: (ref: any) => void;
[k: string]: any;
}
declare const ReactTabulator: (props: ReactTabulatorProps) => React.JSX.Element;
export default ReactTabulator;