UNPKG

@echecs/pgn

Version:

PGN is a parser that is part of the ECHECS project, designed to interpret the PGN (Portable Game Notation) specification.

14 lines (13 loc) 325 B
import lexer_1 = require("./lexer.ts"); import lexer = lexer_1.default; export { lexer as Lexer }; export declare let ParserRules: ({ name: string; symbols: any[]; postprocess?: undefined; } | { name: string; symbols: any[]; postprocess: (x: any) => any; })[]; export declare let ParserStart: string;