UNPKG

@atlaskit/editor-core

Version:

A package contains Atlassian editor core functionality

13 lines (12 loc) 226 B
import { MarkSpec } from '../../prosemirror'; /** * @name link_mark */ export interface Definition { type: 'link'; attrs: { href: string; title?: string; }; } export declare const link: MarkSpec;