reactjs-tiptap-editor
Version:
A modern WYSIWYG rich text editor based on tiptap and shadcn ui for React
17 lines (16 loc) • 362 B
TypeScript
import { default as React } from 'react';
import { Editor } from '@tiptap/core';
interface IProps {
editor: Editor;
items: Array<{
id: string;
label: string;
avatar?: {
src: string;
};
}>;
command: any;
onClose?: () => void;
}
export declare const NodeViewMentionList: React.FC<IProps>;
export {};