UNPKG

solvice-vrp-components

Version:

React components library for visualizing VRP problems in Mintlify documentation

9 lines (7 loc) 302 B
import { VRPJob, VRPJobsResponse } from '../types/api'; export declare class MockVRPAPI { private static totalJobs; static listJobs(page?: number, pageSize?: number): Promise<VRPJobsResponse>; static getJobStatus(id: string): Promise<VRPJob>; } export declare const USE_MOCK_API: boolean;