UNPKG

dice-typescript

Version:

A TypeScript library for parsing dice rolling expressions, most commonly used in tabletop RPGs.

8 lines (7 loc) 209 B
import { Token } from '../lexer'; export declare class ParserError { message: string; token: Token; stackTrace: string; constructor(message: string, token: Token, stackTrace: string); }