@expofp/floorplan
Version:
Interactive floor plan library for expos and events
9 lines • 404 B
TypeScript
import { type Graph } from "ngraph.graph";
import { type PathFinderOptions, type RouteLine } from "../types";
interface LinkData {
distance: number;
}
/** Builds an ngraph instance from route lines, filtering and linking per options. */
export declare function buildNGraph(lines: RouteLine[], options: PathFinderOptions): Graph<unknown, LinkData>;
export {};
//# sourceMappingURL=buildNGraph.d.ts.map