UNPKG

@atlaskit/adf-schema

Version:

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

19 lines (18 loc) 490 B
import type { Inline } from './types/inline-content'; import type { NodeSpec } from '@atlaskit/editor-prosemirror/model'; /** * @name decisionItem_node */ export interface DecisionItemDefinition { attrs: { localId: string; state: string; }; /** // eslint-disable-next-line eslint-plugin-jsdoc/check-tag-names * @allowUnsupportedInline true */ content?: Array<Inline>; type: 'decisionItem'; } export declare const decisionItem: NodeSpec;