UNPKG

@dineug/erd-editor

Version:

Entity-Relationship Diagram Editor

11 lines (10 loc) 252 B
import { FC } from '@dineug/r-html'; import { Table } from '../../../internal-types'; export type TableProps = { table: Table; columnId: string | null; x: number; y: number; }; declare const Table: FC<TableProps>; export default Table;