UNPKG

@atlaskit/adf-schema

Version:

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

14 lines (13 loc) 332 B
import type { NodeSpec } from '@atlaskit/editor-prosemirror/model'; /** * @name rule_node */ export interface RuleDefinition { attrs?: { localId?: string; }; type: 'rule'; } export declare const rule: NodeSpec; export declare const ruleWithLocalId: NodeSpec; export declare const ruleRootOnlyStage0: NodeSpec;