UNPKG

veffect

Version:

powerful TypeScript validation library built on the robust foundation of Effect combining exceptional type safety, high performance, and developer experience. Taking inspiration from Effect's functional principles, VEffect delivers a balanced approach tha

8 lines (7 loc) 215 B
import { Schema, ObjectSchema } from '../types'; /** * Create an object schema */ export declare function object<T extends Record<string, any>>(properties: { [K in keyof T]: Schema<T[K]>; }): ObjectSchema<T>;