UNPKG

@atlaskit/adf-schema

Version:

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

13 lines (12 loc) 281 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;