UNPKG

@tmlmobilidade/types

Version:
13 lines (12 loc) 385 B
import { z } from 'zod'; export declare const AgencyFinancialsSchema: z.ZodObject<{ price_per_km: z.ZodNumber; vkm_per_month: z.ZodArray<z.ZodNumber, "many">; }, "strip", z.ZodTypeAny, { price_per_km: number; vkm_per_month: number[]; }, { price_per_km: number; vkm_per_month: number[]; }>; export type AgencyFinancials = z.infer<typeof AgencyFinancialsSchema>;