Skip to main content
Module

x/valibot/src/actions/index.ts>MinSizeAction

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Go to Latest
interface MinSizeAction
import { type MinSizeAction } from "https://deno.land/x/valibot@v0.36.0/src/actions/index.ts";

Min size action type.

Type Parameters

TInput extends SizeInput
TRequirement extends number
TMessage extends ErrorMessage<MinSizeIssue<TInput, TRequirement>> | undefined

Properties

readonly
type: "min_size"

The action type.

readonly
reference: minSize

The action reference.

readonly
expects: `>=${TRequirement}`

The expected property.

readonly
requirement: TRequirement

The minimum size.

readonly
message: TMessage

The error message.