Skip to main content
Module

x/valibot/src/actions/size/index.ts>SizeIssue

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Go to Latest
interface SizeIssue
implements BaseIssue<TInput>
import { type SizeIssue } from "https://deno.land/x/valibot@v0.35.0/src/actions/size/index.ts";

Size issue type.

Type Parameters

TInput extends SizeInput
TRequirement extends number

Properties

readonly
kind: "validation"

The issue kind.

readonly
type: "size"

The issue type.

readonly
expected: `${TRequirement}`

The expected property.

readonly
received: `${number}`

The received property.

readonly
requirement: TRequirement

The required size.