/** * Enumeration to handle the move generation in n/e/s/w directions */ export declare enum Direction { Up = 0, Down = 1, Left = 2, Right = 3 } /** * Enumeration to handle the move generation in diagonal directions */ export declare enum DirectionAngle { UpRight = 0, UpLeft = 1, DownRight = 2, DownLeft = 3 }