UNPKG

dice-typescript

Version:

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

8 lines (7 loc) 216 B
import { TokenType } from './token-type.enum'; export declare class Token { type: TokenType; position: number; value?: string; constructor(type: TokenType, position: number, value?: string); }