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 objectHelpers from './object'; import * as stringHelpers from './string'; export type * from "./types"; export * from './object'; export * from './string'; export const helpers = { object: objectHelpers, string: stringHelpers };