UNPKG
chlss
Version:
latest (1.0.0-beta.6)
1.0.0-beta.6
1.0.0-beta.5
1.0.0-beta.4
1.0.0-beta.3
1.0.0-beta.2
Open-Source Chess Engine in TypeScript.
chlss
/
dist
/
boardNotation.d.ts
6 lines
(5 loc)
•
195 B
TypeScript
View Raw
1
2
3
4
5
6
import { SquareIndex }
from
"./square"
; export
declare
const
BoardNotation
: {
toBoardNotation
(
squareIndex
: SquareIndex):
string
;
fromBoardNotation
(
boardNotation
:
string
): SquareIndex; };