UNPKG

@ludw1gj/maze-generation

Version:

Maze generation algorithms.

4 lines (3 loc) 197 B
export declare type Direction = "NORTH" | "EAST" | "SOUTH" | "WEST"; export declare const DIRECTIONS: readonly Direction[]; export declare function getOppositeDirection(dir: Direction): Direction;