Files
chesskit/src/types/enums.ts
2024-03-17 18:57:22 +01:00

22 lines
385 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",
}