UNPKG

@atlaskit/adf-schema

Version:

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

16 lines (15 loc) 366 B
import type { MarkSpec, Mark } from '@atlaskit/editor-prosemirror/model'; export interface SubSupAttributes { type: 'sub' | 'sup'; } /** * @name subsup_mark */ export interface SubSupDefinition { attrs: SubSupAttributes; type: 'subsup'; } export interface SubSupMark extends Mark { attrs: SubSupAttributes; } export declare const subsup: MarkSpec;