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) 595 B
import { ActionResponseData } from "../../../interfaces"; export declare class RouteAction { private readonly raw; constructor(raw?: ActionResponseData); getRaw(): ActionResponseData; getType(): string; getStartTime(): number; getDuration(): number; getShipmentIndex(): number | undefined; getShipmentId(): string | undefined; getLocationIndex(): number | undefined; getLocationId(): string | undefined; getJobIndex(): number | undefined; getJobId(): string | undefined; getActionIndex(): number; getWaypointIndex(): number | undefined; }