UNPKG

292 BTypeScriptView Raw
1import { MarkSpec } from 'prosemirror-model';
2export declare type BreakoutMarkAttrs = {
3 mode: 'wide' | 'full-width';
4};
5/**
6 * @name breakout_mark
7 */
8export interface BreakoutMarkDefinition {
9 type: 'breakout';
10 attrs: BreakoutMarkAttrs;
11}
12export declare const breakout: MarkSpec;