react-tabulator
Version:
React Tabulator is based on tabulator - a JS table library with many advanced features.
15 lines (14 loc) • 337 B
TypeScript
import * as React from 'react';
interface IProps {
data: any[];
}
export default class extends React.Component<IProps> {
state: any;
ref: any;
rowClick: (e: any, row: any) => void;
setData: () => void;
clearData: () => void;
renderAjaxScrollExample: () => JSX.Element;
render(): JSX.Element;
}
export {};