UNPKG

valia

Version:

A runtime data validator in TypeScript with advanced type inference, built-in validation functions, and seamless integration for server and client environments.

11 lines (9 loc) 244 B
import * as objectTesters from './object'; import * as stringTesters from './string'; export type * from "./types"; export * from './object'; export * from './string'; export const testers = { object: objectTesters, string: stringTesters };