opt-table
Version:
A Responsive and Customizable Rich Table
10 lines (9 loc) • 421 B
TypeScript
import React from "react";
import { OptTableRefProps, TableHeaderInterface, options } from "./types";
interface props<T> {
list_for_edit: TableHeaderInterface<T>[];
options?: options<T>;
onAccept: () => void;
}
export declare const EditRowComponent: <T>(props: props<T> & React.RefAttributes<OptTableRefProps>) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
export {};