UNPKG

modulo-editor

Version:

A flexible and extensible block-based editor for React applications

11 lines (10 loc) 302 B
import React from "react"; import { BlockToolProps } from "@/types"; export interface TableData { rows: string[][]; headers: string[]; } interface TableToolSpecificProps extends BlockToolProps<BlockToolProps> { } declare const TableTool: React.FC<TableToolSpecificProps>; export { TableTool };