UNPKG

292 BTypeScriptView Raw
1import { NodeSpec } from 'prosemirror-model';
2/**
3 * @name emoji_node
4 */
5export interface EmojiDefinition {
6 type: 'emoji';
7 attrs: EmojiAttributes;
8}
9export interface EmojiAttributes {
10 id?: string;
11 shortName: string;
12 text?: string;
13}
14export declare const emoji: NodeSpec;