UNPKG

clinical-template-editor-hzg

Version:

一个基于 React 和 TipTap 构建的临床模板编辑器组件,专为医疗行业设计

15 lines (14 loc) 427 B
import React from 'react'; interface TableBorderModalProps { show: boolean; borderType: string; setBorderType: (v: string) => void; borderColor: string; setBorderColor: (v: string) => void; borderWidth: string; setBorderWidth: (v: string) => void; onCancel: () => void; onApply: () => void; } declare const TableBorderModal: React.FC<TableBorderModalProps>; export default TableBorderModal;