@blocknote/react
Version:
A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.
11 lines (10 loc) • 608 B
TypeScript
import { DefaultInlineContentSchema, DefaultStyleSchema, InlineContentSchema, StyleSchema } from "@blocknote/core";
import { ReactNode } from "react";
import { TableHandleProps } from "./TableHandleProps.js";
/**
* By default, the TableHandle component will render with the default icon.
* However, you can override the icon to render by passing children.
*/
export declare const TableHandle: <I extends InlineContentSchema = DefaultInlineContentSchema, S extends StyleSchema = DefaultStyleSchema>(props: TableHandleProps<I, S> & {
children?: ReactNode;
}) => import("react/jsx-runtime").JSX.Element;