botbook/node_modules/ebnf/dist/TokenError.d.ts

8 lines
197 B
TypeScript
Raw Normal View History

2024-09-04 13:13:15 -03:00
import { IToken } from './Parser';
export declare class TokenError extends Error {
message: string;
token: IToken;
constructor(message: string, token: IToken);
inspect(): string;
}