Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/valibot/mod.ts>ObjectPathItem

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Latest
interface ObjectPathItem
Re-export
import { type ObjectPathItem } from "https://deno.land/x/valibot@v0.35.0/mod.ts";

Object path item type.

Properties

readonly
type: "object"

The path item type.

readonly
origin: "key" | "value"

The path item origin.

readonly
input: Record<string, unknown>

The path item input.

readonly
key: string

The path item key.

readonly
value: unknown

The path item value.