UNPKG

@geoapify/route-planner-sdk

Version:

A TypeScript SDK for the Geoapify Route Planner API that simplifies route optimization requests, and helps visualize and edit resulting routes.

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; }