UNPKG

@atlaskit/adf-schema

Version:

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

16 lines (15 loc) 282 B
import { NodeSpec } from 'prosemirror-model'; /** * @name text_node */ export interface TextDefinition { type: 'text'; /** * @minLength 1 */ text: string; marks?: Array<any>; } export declare const text: NodeSpec & { toDebugString?: () => string; };