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 • 581 B
TypeScript
import { z } from "zod";
import { type VesselStats } from "@/schemas/wsf-vessels/vesselStats.zod";
import type { EndpointDefinition } from "@/shared/endpoints";
/** Input schema for getVesselStatsById */
declare const vesselsStatsByIdInput: z.ZodObject<{
vesselId: z.ZodNumber;
}, z.core.$strip>;
/** Endpoint metadata for getVesselStatsById */
export declare const getVesselStatsByIdMeta: EndpointDefinition<VesselsStatsByIdInput, VesselStats>;
export type VesselsStatsByIdInput = z.infer<typeof vesselsStatsByIdInput>;
export {};
//# sourceMappingURL=vesselStatsById.d.ts.map