export type ValidationResult = { /** dot separated */ id: string; msgs: string[]; }; export type Validator = (thing: unknown) => { errorMsg?: string; errors: ValidationResult[]; data?: T; }; //# sourceMappingURL=types.d.ts.map