@tmlmobilidade/types
Version:
13 lines (12 loc) • 358 B
TypeScript
import { z } from 'zod';
export declare const AlertReferenceSchema: z.ZodObject<{
child_ids: z.ZodArray<z.ZodString, "many">;
parent_id: z.ZodString;
}, "strip", z.ZodTypeAny, {
child_ids: string[];
parent_id: string;
}, {
child_ids: string[];
parent_id: string;
}>;
export type AlertReference = z.infer<typeof AlertReferenceSchema>;