1 | import { NodeSpec } from 'prosemirror-model';
|
2 | import { CodeBlockWithMarksDefinition as CodeBlockWithMarks } from './code-block';
|
3 | import { ExpandWithBreakoutDefinition as ExpandWithBreakout } from './expand';
|
4 | import { LayoutSectionDefinition as LayoutSection } from './layout-section';
|
5 | import { ParagraphWithIndentationDefinition } from './paragraph';
|
6 | import { BlockContent } from './types/block-content';
|
7 |
|
8 |
|
9 |
|
10 | export interface DocNode {
|
11 | version: 1;
|
12 | type: 'doc';
|
13 | |
14 |
|
15 |
|
16 | content: Array<BlockContent | LayoutSection | CodeBlockWithMarks | ExpandWithBreakout | ParagraphWithIndentationDefinition>;
|
17 | }
|
18 | export declare const doc: NodeSpec;
|