UNPKG

352 BTypeScriptView Raw
1import { MarkSpec } from 'prosemirror-model';
2export interface IndentationMarkAttributes {
3 /**
4 * @minimum 1
5 * @maximum 6
6 */
7 level: number;
8}
9/**
10 * @name indentation_mark
11 */
12export interface IndentationMarkDefinition {
13 type: 'indentation';
14 attrs: IndentationMarkAttributes;
15}
16export declare const indentation: MarkSpec;