UNPKG

@real_one_chess_king/game-logic

Version:
6 lines (5 loc) 397 B
import { Action } from "../chess"; import { Affect } from "../chess/affect/affect.types"; export declare const isAffectEql: (expected: Affect, received: Affect) => boolean; export declare const isAffectsEql: (expected: Affect[] | undefined, received: Affect[] | undefined) => boolean; export declare const isActionsEql: (expected: Action[] | undefined, received: Action[] | undefined) => boolean;