UNPKG

@atlaskit/adf-schema

Version:

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

13 lines (12 loc) 470 B
import { MarkSpec } from '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 { type: 'confluenceInlineComment'; attrs: { reference: string; }; } export declare const confluenceInlineComment: MarkSpec;