valia
Version:
A runtime data validator in TypeScript with advanced type inference, built-in validation functions, and seamless integration for server and client environments.
12 lines (11 loc) • 304 B
TypeScript
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 declare const testers: {
object: typeof object;
string: typeof string;
hasTag: typeof hasTag;
};