reactjs-tiptap-editor
Version:
A modern WYSIWYG rich text editor based on tiptap and shadcn ui for React
12 lines (11 loc) • 319 B
TypeScript
import { default as React } from 'react';
interface IPropsEmojiNodeVIew {
items: Array<{
name: string;
emoji: string;
}>;
query: string;
command: any;
}
declare const _default: React.ForwardRefExoticComponent<IPropsEmojiNodeVIew & React.RefAttributes<unknown>>;
export default _default;