UNPKG

@atlaskit/adf-schema

Version:

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

17 lines (16 loc) 374 B
import type { MarkSpec } from '@atlaskit/editor-prosemirror/model'; export interface IndentationMarkAttributes { /** * @minimum 1 * @maximum 6 */ level: number; } /** * @name indentation_mark */ export interface IndentationMarkDefinition { attrs: IndentationMarkAttributes; type: 'indentation'; } export declare const indentation: MarkSpec;