export enum Direction { NORTH = "NORTH", SOUTH = "SOUTH", EAST = "EAST", WEST = "WEST", } export const directions: Direction[] = [ Direction.NORTH, Direction.SOUTH, Direction.EAST, Direction.WEST, ];