clinical-template-editor-hzg
Version:
一个基于 React 和 TipTap 构建的临床模板编辑器组件,专为医疗行业设计
15 lines (14 loc) • 419 B
TypeScript
import React from 'react';
interface TableConfigModalProps {
show: boolean;
tableRows: number;
tableCols: number;
rowHeight: number;
setTableRows: (v: number) => void;
setTableCols: (v: number) => void;
setRowHeight: (v: number) => void;
onCancel: () => void;
onConfirm: () => void;
}
declare const TableConfigModal: React.FC<TableConfigModalProps>;
export default TableConfigModal;