UNPKG

@atlaskit/adf-schema

Version:

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

13 lines (12 loc) 492 B
import type { MarkSpec } from '@atlaskit/editor-prosemirror/model'; /** * @name inline_comment_marker * @description This temporary mark represents a Confluence-backed inline comment that wraps a piece of text. It will be replaced with a cross-product inline comment solution at later date. */ export interface ConfluenceInlineCommentDefinition { attrs: { reference: string; }; type: 'confluenceInlineComment'; } export declare const confluenceInlineComment: MarkSpec;