@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
12 lines (11 loc) • 428 B
TypeScript
import { RouteActionInfoData } from "../../../interfaces/nested/result/route-action-info-data";
import { RouteAction } from "./route-action";
import { AgentSolution } from "./agent-solution";
export declare class RouteActionInfo {
private readonly raw;
constructor(raw?: RouteActionInfoData);
getRaw(): RouteActionInfoData;
getAgentId(): string;
getActions(): RouteAction[];
getAgent(): AgentSolution;
}