UNPKG

ws-dottie

Version:

Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration

10 lines 561 B
import { z } from "zod"; import { type VesselLocations } from "@/schemas/wsf-vessels/vesselLocations.zod"; import type { EndpointDefinition } from "@/shared/endpoints"; /** Input schema for getVesselLocations */ declare const vesselLocationsInput: z.ZodObject<{}, z.core.$strip>; /** Endpoint metadata for getVesselLocations */ export declare const getVesselLocationsMeta: EndpointDefinition<VesselLocationsInput, VesselLocations>; export type VesselLocationsInput = z.infer<typeof vesselLocationsInput>; export {}; //# sourceMappingURL=vesselLocations.d.ts.map