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.

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