UNPKG

dice-typescript

Version:

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

7 lines (6 loc) 177 B
export interface CharacterStream { getCurrentCharacter(): string; getCurrentPosition(): number; getNextCharacter(): string; peekNextCharacter(): string; }