Interface ILexerDefinitionError

interface ILexerDefinitionError {
    message: string;
    tokenTypes?: TokenType[];
    type: LexerDefinitionErrorType;
}

Properties

message: string
tokenTypes?: TokenType[]