1 | import { type DocNode, DocNodeKind } from './DocNode';
|
2 | import { DocNodeContainer, type IDocNodeContainerParameters, type IDocNodeContainerParsedParameters } from './DocNodeContainer';
|
3 |
|
4 |
|
5 |
|
6 | export interface IDocSectionParameters extends IDocNodeContainerParameters {
|
7 | }
|
8 |
|
9 |
|
10 |
|
11 | export interface IDocSectionParsedParameters extends IDocNodeContainerParsedParameters {
|
12 | }
|
13 |
|
14 |
|
15 |
|
16 | export declare class DocSection extends DocNodeContainer {
|
17 | |
18 |
|
19 |
|
20 |
|
21 | constructor(parameters: IDocSectionParameters | IDocSectionParsedParameters, childNodes?: ReadonlyArray<DocNode>);
|
22 | /** @override */
|
23 | get kind(): DocNodeKind | string;
|
24 | /**
|
25 | * If the last item in DocSection.nodes is not a DocParagraph, a new paragraph
|
26 | * is started. Either way, the provided docNode will be appended to the paragraph.
|
27 | */
|
28 | appendNodeInParagraph(docNode: DocNode): void;
|
29 | appendNodesInParagraph(docNodes: ReadonlyArray<DocNode>): void;
|
30 | }
|
31 | //# sourceMappingURL=DocSection.d.ts.map |
\ | No newline at end of file |