UNPKG

@stacksjs/ts-validation

Version:

A simple TypeScript starter kit using Bun.

7 lines 293 B
import { StringValidator } from './strings'; import type { TextValidatorType, ValidationNames } from '../types'; export declare function text(): TextValidator; export declare class TextValidator extends StringValidator implements TextValidatorType { name: ValidationNames; constructor(); }