UNPKG

@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) 348 B
import { z } from 'zod'; import { components } from '../types/api'; type FieldDefinition = components['schemas']['FieldDefinition']; export declare const buildFilterSchemaFromFields: (fields: FieldDefinition[]) => z.ZodObject<{ [x: string]: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>; }, z.core.$strip>; export {};