UNPKG

fentastic

Version:

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

8 lines (7 loc) 252 B
export declare type Token = { value: string; index: number; }; export declare type isOfType = (token: Token) => boolean; export declare const tokenIs: (pattern: RegExp) => isOfType; export declare const createTokens: (fen?: string) => Token[];