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 • 530 B
TypeScript
import { z } from "zod";
import type { VesselBasics } from "@/schemas/wsf-vessels/vesselBasics.zod";
import type { EndpointDefinition } from "@/shared/endpoints";
/** Input schema for getVesselBasics */
declare const vesselBasicsInput: z.ZodObject<{}, z.core.$strip>;
/** Endpoint metadata for getVesselBasics */
export declare const getVesselBasicsMeta: EndpointDefinition<VesselBasicsInput, VesselBasics[]>;
export type VesselBasicsInput = z.infer<typeof vesselBasicsInput>;
export {};
//# sourceMappingURL=vesselBasics.d.ts.map