import { Validated, Validator } from "./validators"; export type ArrayFields = { [P in keyof T]: T[P][]; }; export type ValidatedFields = { [P in keyof T]: Validated; }; export type ValidatorFields = { [P in keyof T]: Validator; };