tsgammon-core
Version:
A Backgammon library for Typescript, formerly developed as a part of tsgammon-ui
17 lines • 621 B
TypeScript
import { MoveFormatDirection } from '../../utils/formatAbsMove';
import { CheckerPlayState } from '../CheckerPlayState';
import { CBState } from '../CubeGameState';
import { SGState } from '../SingleGameState';
/**
* 現局面を単純な文字列で表記する
*
* @param sgState
* @param cbState
* @param cpState
* @param moveFormatDirection
* @param red
* @param white
* @returns
*/
export declare function formatState(sgState: SGState, cbState?: CBState, cpState?: CheckerPlayState, moveFormatDirection?: MoveFormatDirection, red?: string, white?: string): string;
//# sourceMappingURL=formatState.d.ts.map