UNPKG

@atlaskit/adf-schema

Version:

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

13 lines (12 loc) 224 B
/** * @name text_node */ export interface TextDefinition { type: 'text'; /** * @minLength 1 */ text: string; marks?: Array<any>; } export declare const text: import("prosemirror-model").NodeSpec;