Files
chesskit/src/types/enums.ts
2024-03-18 02:48:34 +01:00

27 lines
438 B
TypeScript

export enum GameOrigin {
Pgn = "pgn",
ChessCom = "chesscom",
Lichess = "lichess",
}
export enum EngineName {
Stockfish16 = "stockfish_16",
}
export enum MoveClassification {
Blunder = "blunder",
Mistake = "mistake",
Inaccuracy = "inaccuracy",
Good = "good",
Excellent = "excellent",
Best = "best",
Book = "book",
Great = "great",
Brilliant = "brilliant",
}
export enum Color {
White = "w",
Black = "b",
}