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

9 lines (8 loc) 318 B
import { RemoveOptions } from "../../../../models"; import { RouteResultEditorBase } from "../../route-result-editor-base"; /** * Base interface for remove strategies */ export interface RemoveStrategy { execute(context: RouteResultEditorBase, itemIndexes: number[], options: RemoveOptions): Promise<boolean>; }