UNPKG

@geoapify/route-planner-sdk

Version:

TypeScript SDK for the Geoapify Route Planner API. Supports route optimization, delivery planning, and timeline visualization in browser and Node.js

10 lines (9 loc) 286 B
import { BreakData } from "../../../interfaces"; export declare class Break { private raw; constructor(raw?: BreakData); getRaw(): BreakData; setRaw(value: BreakData): this; addTimeWindow(start: number, end: number): this; setDuration(duration: number): this; }