@maniascript/api
Version:
Maniascript API generator
33 lines (32 loc) • 1.2 kB
TypeScript
import * as antlr from "antlr4ng";
export declare class DocCommentLexer extends antlr.Lexer {
static readonly DOC_START = 1;
static readonly DOC_END = 2;
static readonly COMMAND_BRIEF = 3;
static readonly COMMAND_PARAM = 4;
static readonly WHITESPACE = 5;
static readonly NEWLINE = 6;
static readonly STAR = 7;
static readonly COLON = 8;
static readonly TEXT_CONTENT = 9;
static readonly UNKNOWN = 10;
static readonly channelNames: string[];
static readonly literalNames: (string | null)[];
static readonly symbolicNames: (string | null)[];
static readonly modeNames: string[];
static readonly ruleNames: string[];
constructor(input: antlr.CharStream);
get grammarFileName(): string;
get literalNames(): (string | null)[];
get symbolicNames(): (string | null)[];
get ruleNames(): string[];
get serializedATN(): number[];
get channelNames(): string[];
get modeNames(): string[];
static readonly _serializedATN: number[];
private static __ATN;
static get _ATN(): antlr.ATN;
private static readonly vocabulary;
get vocabulary(): antlr.Vocabulary;
private static readonly decisionsToDFA;
}