ws-dottie
Version:
Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration
12 lines • 661 B
TypeScript
import { z } from "zod";
import { type VesselLocation } from "@/schemas/wsf-vessels/vesselLocations.zod";
import type { EndpointDefinition } from "@/shared/endpoints";
/** Input schema for getVesselLocationsByVesselId */
declare const vesselLocationsByVesselIdInput: z.ZodObject<{
vesselId: z.ZodNumber;
}, z.core.$strip>;
/** Endpoint metadata for getVesselLocationsByVesselId */
export declare const getVesselLocationsByVesselIdMeta: EndpointDefinition<VesselLocationsByVesselIdInput, VesselLocation>;
export type VesselLocationsByVesselIdInput = z.infer<typeof vesselLocationsByVesselIdInput>;
export {};
//# sourceMappingURL=vesselLocationsById.d.ts.map