@atlaskit/adf-schema
Version:
Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs
15 lines (14 loc) • 353 B
TypeScript
import { NodeSpec } from 'prosemirror-model';
import { ParagraphDefinition as Paragraph } from './paragraph';
/**
* @name blockquote_node
*/
export interface BlockQuoteDefinition {
type: 'blockquote';
/**
* @minItems 1
* @allowUnsupportedBlock true
*/
content: Array<Paragraph>;
}
export declare const blockquote: NodeSpec;