UNPKG

@atlaskit/editor-core

Version:

A package contains Atlassian editor core functionality

16 lines (13 loc) 236 B
import { NodeSpec, nodes } from '../../prosemirror'; /** * @name text_node */ export interface Definition { type: 'text'; /** * @minLength 1 */ text: string; marks?: object; } export const text: NodeSpec = nodes.text;