UNPKG

@dineug/erd-editor

Version:

Entity-Relationship Diagram Editor

10 lines (9 loc) 275 B
import { FC, Ref } from '@dineug/r-html'; import { AppContext } from '../../appContext'; export type DiffViewerProps = { app: Ref<AppContext>; initialValue: string; onClose: () => void; }; declare const DiffViewer: FC<DiffViewerProps>; export default DiffViewer;