UNPKG

@atlaskit/adf-schema

Version:

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

12 lines (11 loc) 234 B
import { NodeSpec } from 'prosemirror-model'; /** * @name placeholder_node */ export interface PlaceholderDefinition { type: 'placeholder'; attrs: { text: string; }; } export declare const placeholder: NodeSpec;