@lobehub/editor
Version:
A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.
20 lines (19 loc) • 629 B
TypeScript
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
import { TableCellNode } from '@lexical/table';
import type { LexicalEditor } from 'lexical';
import { type ReactNode } from 'react';
interface TableCellActionMenuProps {
cellMerge?: boolean;
children: ReactNode;
className?: string;
editor: LexicalEditor;
tableCellNode: TableCellNode;
}
declare const TableActionMenu: import("react").NamedExoticComponent<TableCellActionMenuProps>;
export default TableActionMenu;