@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
8 lines (7 loc) • 330 B
TypeScript
import z from 'zod';
export declare const schema: z.ZodObject<{
reportId: z.ZodString;
variantId: z.ZodString;
role: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string, string | undefined>>;
moreDetail: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string, string | undefined>>;
}, z.core.$strip>;