Skip to main content
Module

x/valibot/mod.ts>RecordOutput

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

Record output inference type.

Type Parameters

TKey extends RecordKey | RecordKeyAsync
TValue extends BaseSchema | BaseSchemaAsync
definition: ResolveObject<TKey extends PartialKeySchema ? Partial<Record<Output<TKey>, Output<TValue>>> : Record<Output<TKey>, Output<TValue>>>