UNPKG

@stacksjs/ts-validation

Version:

A simple TypeScript starter kit using Bun.

4 lines 247 B
import type { LengthValidator, Validator } from './base'; export declare interface BlobValidatorType extends Validator<string>, LengthValidator<BlobValidatorType> { custom: (fn: (value: string) => boolean, message: string) => BlobValidatorType }