27 lines
438 B
TypeScript
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",
|
|
}
|