UNPKG

202 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 type Directions = typeof Directions[keyof typeof Directions];