import { IntPoint } from "./IntPoint";
export type Path = IntPoint[];
export type ReadonlyPath = ReadonlyArray<Readonly<IntPoint>>;
