UNPKG

@atlaskit/adf-schema

Version:

Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs

15 lines (14 loc) 292 B
import { NodeSpec } from 'prosemirror-model'; /** * @name emoji_node */ export interface EmojiDefinition { type: 'emoji'; attrs: EmojiAttributes; } export interface EmojiAttributes { id?: string; shortName: string; text?: string; } export declare const emoji: NodeSpec;