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

x/valibot/src/index.ts>strict

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Go to Latest
function strict
Deprecated
Deprecated

Use object with rest argument instead.

import { strict } from "https://deno.land/x/valibot@v0.22.0/src/index.ts";

Creates a strict object schema that throws an error if an input contains unknown keys.

Type Parameters

TSchema extends ObjectSchema<ObjectEntries, undefined>

Parameters

schema: TSchema

A object schema.

optional
message: ErrorMessage = [UNSUPPORTED]

The error message.

Returns

A strict object schema.