UNPKG

fentastic

Version:

Validate and parse Forsyth-Edwards Notation (FEN) used to describe a chess game board position.

10 lines (9 loc) 324 B
import { ParseError } from './ParseError.js'; import { type Token, type isOfType } from './token.js'; export declare type TokenGroup = { value: string; tokens: Token[]; delimiter: Token; error?: ParseError; }; export declare const createTokenGroups: (isDelimiter: isOfType, tokens: Token[]) => TokenGroup[];