UNPKG

@dineug/erd-editor

Version:

Entity-Relationship Diagram Editor

10 lines (9 loc) 277 B
import { FC } from '@dineug/r-html'; export type TablePropertiesProps = { isDarkMode: boolean; tableId: string; tableIds: string[]; onChange: (tableId: string) => void; }; declare const TableProperties: FC<TablePropertiesProps>; export default TableProperties;