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.

13 lines (11 loc) 243 B
import * as string from './string'; import * as object from './object'; import { hasTag } from './utils'; export type * from "./types"; export * from './string'; export * from './object'; export const testers = { object, string, hasTag };