UNPKG

226 BTypeScriptView Raw
1import { NodeSpec } from 'prosemirror-model';
2/**
3 * @name hardBreak_node
4 */
5export interface HardBreakDefinition {
6 type: 'hardBreak';
7 attrs?: {
8 text?: '\n';
9 };
10}
11export declare const hardBreak: NodeSpec;