@real_one_chess_king/game-logic
Version:
R.O.C.K. chess game logic
6 lines (5 loc) • 397 B
TypeScript
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;