UNPKG

@cucumber/gherkin

Version:
9 lines 482 B
import { GherkinException } from './Errors'; import type IToken from './IToken'; export declare class UnexpectedTokenException extends GherkinException { static create<TokenType>(token: IToken<TokenType>, expectedTokenTypes: string[]): GherkinException; } export declare class UnexpectedEOFException extends GherkinException { static create<TokenType>(token: IToken<TokenType>, expectedTokenTypes: string[]): GherkinException; } //# sourceMappingURL=TokenExceptions.d.ts.map