@tmlmobilidade/types
Version:
10 lines (9 loc) • 307 B
TypeScript
import { z } from 'zod';
export declare const RideOverridesSchema: z.ZodObject<{
trip_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
}, "strip", z.ZodTypeAny, {
trip_id: string | null;
}, {
trip_id?: string | null | undefined;
}>;
export type RideOverrides = z.infer<typeof RideOverridesSchema>;