owl-rich-table
Version:
富文本编辑表格,react组件
19 lines (18 loc) • 438 B
TypeScript
import './style.css';
/**
* @description
* @author Huang Wenjie
* @createDate 2023-10-08
*/
import type { ReactNode } from 'react';
interface PropsType {
children: ReactNode;
handleClick: () => void;
width: number;
height: number;
type?: 'col' | 'row';
childrenIsMoverBar?: boolean;
bindId: string;
}
export default function AddButton(props: PropsType): import("react/jsx-runtime").JSX.Element;
export {};