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

18 lines (17 loc) 592 B
import { RouteActionData } from "../../../interfaces"; export declare class RouteAction { private readonly raw; constructor(raw?: RouteActionData); getRaw(): RouteActionData; getType(): string; getStartTime(): number; getDuration(): number; getShipmentIndex(): number | undefined; getShipmentId(): string | undefined; getLocationIndex(): number | undefined; getLocationId(): string | undefined; getJobIndex(): number | undefined; getJobId(): string | undefined; getIndex(): number | undefined; getWaypointIndex(): number | undefined; }