UNPKG

objectypes

Version:

A type-safe library to transform and validate objects

10 lines (9 loc) 205 B
export interface TypeError { propertyKey: string; propertyType: string; expectedType: string; } export interface ValidationErrors { presenceErrors: string[]; typeErrors: TypeError[]; }