react-url-table
Version:
Smart and flexible table component built with React and for React projects. based on React16 hooks and mobx-react-lite
14 lines (13 loc) • 463 B
TypeScript
import React from "react";
import { IHeaderProp, IHeaderPropObject } from "../../@typings/types";
declare class HeaderModel implements IHeaderPropObject {
name: string;
index: number;
sortable: boolean;
searchable: boolean;
editable: boolean | undefined;
constructor(props: IHeaderProp, index: number);
renderHandler?(name: string): string | React.ReactElement;
render(): string | React.ReactElement;
}
export default HeaderModel;