scrivly
Version:
A powerful, feature-rich rich text editor for React with TypeScript support
11 lines • 311 B
TypeScript
import type React from "react";
interface TableContextMenuProps {
show: boolean;
x: number;
y: number;
onAction: (action: string) => void;
onClose: () => void;
}
export declare const TableContextMenu: React.FC<TableContextMenuProps>;
export {};
//# sourceMappingURL=TableContextMenu.d.ts.map