Skip to main content
Module

x/valibot/src/types/index.ts>MarkOptional

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

Marks specific keys as optional.

Type Parameters

TObject
TKeys extends keyof TObject
definition: Omit<TObject, TKeys> & Partial<Pick<TObject, TKeys>>