UNPKG

onix-chess

Version:
18 lines (17 loc) 842 B
export { register as i18nRegister } from './i18n'; export * from './types/Types'; export * from './types/Interfaces'; export { Color } from './chess/Color'; export { GameResult } from './chess/GameResult'; export { CastlingStr, Castling, CastlingSide } from './chess/Castling'; export { Piece } from './chess/Piece'; export { Square } from './chess/Square'; export { Move } from './chess/Move'; export { SimpleMove } from './chess/SimpleMove'; export { FenString, FenFormat } from './chess/FenString'; export { Position } from './chess/Position'; export { Chess } from './chess/Chess'; export { GameState, createGameState } from './actions/GameState'; export { GameStore, GameRelatedState, GameRelatedStore } from './actions/GameStore' export { GameActions } from './actions/GameActions'; export { gameReducer } from './actions/GameReducer';