1 | export declare const Directions: {
|
2 | readonly RIGHT: 1;
|
3 | readonly LEFT: 2;
|
4 | readonly UP: 4;
|
5 | readonly DOWN: 8;
|
6 | };
|
7 | export declare const DiagonalDirections: {
|
8 | readonly UP_RIGHT: number;
|
9 | readonly DOWN_RIGHT: number;
|
10 | readonly UP_LEFT: number;
|
11 | readonly DOWN_LEFT: number;
|
12 | };
|
13 | export type Directions = typeof Directions[keyof typeof Directions];
|
14 | export type DiagonalDirections = typeof DiagonalDirections[keyof typeof DiagonalDirections];
|