UNPKG

@dineug/erd-editor

Version:

Entity-Relationship Diagram Editor

11 lines (10 loc) 288 B
import { FC } from '@dineug/r-html'; import { AppContext } from '../../../appContext'; import { DiffMap } from '../diff'; export type ErdViewerProps = { app: AppContext; diff: number; diffMap: DiffMap; }; declare const ErdViewer: FC<ErdViewerProps>; export default ErdViewer;