UNPKG

mdx-m3-viewer

Version:

A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.

13 lines (12 loc) 325 B
export default class TokenStream { buffer: string; index: number; constructor(buffer: string); read(): string | undefined; /** * Reads the next token without advancing the stream. */ peek(): string | undefined; readSafe(): string; readUntil(delimiter: string): string; }