UNPKG

318 BTypeScriptView Raw
1import { NodeSpec } from 'prosemirror-model';
2import { ParagraphDefinition as Paragraph } from './paragraph';
3/**
4 * @name blockquote_node
5 */
6export interface BlockQuoteDefinition {
7 type: 'blockquote';
8 /**
9 * @minItems 1
10 */
11 content: Array<Paragraph>;
12}
13export declare const blockquote: NodeSpec;