summaryrefslogtreecommitdiff
path: root/node_modules/typedoc/dist/lib/converter/comments/lexer.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/typedoc/dist/lib/converter/comments/lexer.d.ts')
-rw-r--r--node_modules/typedoc/dist/lib/converter/comments/lexer.d.ts17
1 files changed, 17 insertions, 0 deletions
diff --git a/node_modules/typedoc/dist/lib/converter/comments/lexer.d.ts b/node_modules/typedoc/dist/lib/converter/comments/lexer.d.ts
new file mode 100644
index 0000000..18271a0
--- /dev/null
+++ b/node_modules/typedoc/dist/lib/converter/comments/lexer.d.ts
@@ -0,0 +1,17 @@
+import type { ReflectionSymbolId } from "../../models";
+export declare enum TokenSyntaxKind {
+ Text = "text",
+ NewLine = "new_line",
+ OpenBrace = "open_brace",
+ CloseBrace = "close_brace",
+ Tag = "tag",
+ Code = "code",
+ TypeAnnotation = "type"
+}
+export interface Token {
+ kind: TokenSyntaxKind;
+ text: string;
+ pos: number;
+ tsLinkTarget?: ReflectionSymbolId;
+ tsLinkText?: string;
+}