Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import * as React from "react";
import {tableCell} from "../../renderer/styles/tableCell";
import {tableIcons} from "./tableIcons";
export const MuiTable : typeof import("material-table").default = require("material-table").default;
type Row = T & {
tableData : {
id : number
}
};
type TableColumn = Omit & {
render? : (row : Row) => string | number | boolean | JSX.Element;
searchable : boolean;
field : keyof T | "";
hidden : boolean;
};
export interface TableProps
{