1 | import { DocNodeKind, DocNode } from './DocNode';
|
2 | import type { TokenSequence } from '../parser/TokenSequence';
|
3 | import { type IDocInlineTagBaseParameters, type IDocInlineTagBaseParsedParameters, DocInlineTagBase } from './DocInlineTagBase';
|
4 |
|
5 |
|
6 |
|
7 | export interface IDocInlineTagParameters extends IDocInlineTagBaseParameters {
|
8 | tagContent: string;
|
9 | }
|
10 |
|
11 |
|
12 |
|
13 | export interface IDocInlineTagParsedParameters extends IDocInlineTagBaseParsedParameters {
|
14 | tagContentExcerpt?: TokenSequence;
|
15 | }
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 |
|
26 | export declare class DocInlineTag extends DocInlineTagBase {
|
27 | private _tagContent;
|
28 | private readonly _tagContentExcerpt;
|
29 | |
30 |
|
31 |
|
32 |
|
33 | constructor(parameters: IDocInlineTagParameters | IDocInlineTagParsedParameters);
|
34 | /** @override */
|
35 | get kind(): DocNodeKind | string;
|
36 | /**
|
37 | * The tag content.
|
38 | * @remarks
|
39 | * For example, if the tag is `{@myTag x=12.34 y=56.78 }` then the tag content
|
40 | * would be `x=12.34 y=56.78 `, including the trailing space but not the leading space.
|
41 | */
|
42 | get tagContent(): string;
|
43 | /** @override */
|
44 | protected getChildNodesForContent(): ReadonlyArray<DocNode | undefined>;
|
45 | }
|
46 | //# sourceMappingURL=DocInlineTag.d.ts.map |
\ | No newline at end of file |