UNPKG

@stacksjs/ts-validation

Version:

A simple TypeScript starter kit using Bun.

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