UNPKG

381 BTypeScriptView Raw
1/**
2 * @category Enums
3 */
4export declare enum MoveDirection {
5 bottom = "bottom",
6 bottomLeft = "bottom-left",
7 bottomRight = "bottom-right",
8 left = "left",
9 none = "none",
10 right = "right",
11 top = "top",
12 topLeft = "top-left",
13 topRight = "top-right"
14}
15export declare type MoveDirectionAlt = "bottom-left" | "bottom-right" | "top-left" | "top-right";