UNPKG

470 BTypeScriptView Raw
1import { MarkSpec } from 'prosemirror-model';
2/**
3 * @name inline_comment_marker
4 * @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.
5 */
6export interface ConfluenceInlineCommentDefinition {
7 type: 'confluenceInlineComment';
8 attrs: {
9 reference: string;
10 };
11}
12export declare const confluenceInlineComment: MarkSpec;