typedoc
Version:
Create api documentation for TypeScript projects.
18 lines (17 loc) • 415 B
TypeScript
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;
}