UNPKG

319 BTypeScriptView Raw
1import { NodeSpec } from 'prosemirror-model';
2import { NestedExpandContent } from './doc';
3/**
4 * @name nestedExpand_node
5 */
6export interface NestedExpandDefinition {
7 type: 'nestedExpand';
8 attrs: {
9 title?: string;
10 };
11 content: NestedExpandContent;
12}
13export declare const nestedExpand: NodeSpec;