UNPKG

@allgroup/yandex-taxi-fleet-api

Version:

Unofficial yandex taxi fleet api library

10 lines (9 loc) 245 B
import { DriverProfile } from "./driver-profile"; import { Park } from "../park"; export interface DriversListResponse { driver_profiles: Partial<DriverProfile>[] limit: number; offset: number; parks: Park[]; total: number; }