UNPKG

@atlaskit/editor-core

Version:

A package contains Atlassian editor core functionality

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