1 | import { DocNodeKind, DocNode, type IDocNodeParameters, type IDocNodeParsedParameters } from './DocNode';
|
2 | import { DocSection } from './DocSection';
|
3 | import type { DocBlockTag } from './DocBlockTag';
|
4 |
|
5 |
|
6 |
|
7 | export interface IDocBlockParameters extends IDocNodeParameters {
|
8 | blockTag: DocBlockTag;
|
9 | }
|
10 |
|
11 |
|
12 |
|
13 | export interface IDocBlockParsedParameters extends IDocNodeParsedParameters {
|
14 | blockTag: DocBlockTag;
|
15 | }
|
16 |
|
17 |
|
18 |
|
19 |
|
20 | export declare class DocBlock extends DocNode {
|
21 | private readonly _blockTag;
|
22 | private readonly _content;
|
23 | |
24 |
|
25 |
|
26 |
|
27 | constructor(parameters: IDocBlockParameters | IDocBlockParsedParameters);
|
28 | /** @override */
|
29 | get kind(): DocNodeKind | string;
|
30 | /**
|
31 | * The TSDoc tag that introduces this section.
|
32 | */
|
33 | get blockTag(): DocBlockTag;
|
34 | /**
|
35 | * The TSDoc tag that introduces this section.
|
36 | */
|
37 | get content(): DocSection;
|
38 | /** @override */
|
39 | protected onGetChildNodes(): ReadonlyArray<DocNode | undefined>;
|
40 | }
|
41 | //# sourceMappingURL=DocBlock.d.ts.map |
\ | No newline at end of file |