1 | import { DocNodeKind, DocNode, type IDocNodeParameters, type IDocNodeParsedParameters } from './DocNode';
|
2 | import type { TokenSequence } from '../parser/TokenSequence';
|
3 |
|
4 |
|
5 |
|
6 | export interface IDocBlockTagParameters extends IDocNodeParameters {
|
7 | tagName: string;
|
8 | }
|
9 |
|
10 |
|
11 |
|
12 | export interface IDocBlockTagParsedParameters extends IDocNodeParsedParameters {
|
13 | tagName: string;
|
14 | tagNameExcerpt: TokenSequence;
|
15 | }
|
16 |
|
17 |
|
18 |
|
19 | export declare class DocBlockTag extends DocNode {
|
20 | private readonly _tagName;
|
21 | private readonly _tagNameWithUpperCase;
|
22 | private readonly _tagNameExcerpt;
|
23 | |
24 |
|
25 |
|
26 |
|
27 | constructor(parameters: IDocBlockTagParameters | IDocBlockTagParsedParameters);
|
28 | /** @override */
|
29 | get kind(): DocNodeKind | string;
|
30 | /**
|
31 | * The TSDoc tag name. TSDoc tag names start with an at-sign (`@`) followed
|
32 | * by ASCII letters using "camelCase" capitalization.
|
33 | */
|
34 | get tagName(): string;
|
35 | /**
|
36 | * The TSDoc tag name in all capitals, which is used for performing
|
37 | * case-insensitive comparisons or lookups.
|
38 | */
|
39 | get tagNameWithUpperCase(): string;
|
40 | /** @override */
|
41 | protected onGetChildNodes(): ReadonlyArray<DocNode | undefined>;
|
42 | getTokenSequence(): TokenSequence;
|
43 | }
|
44 | //# sourceMappingURL=DocBlockTag.d.ts.map |
\ | No newline at end of file |