UNPKG

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