Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

objectUtil.addQuestionMarks

import type { objectUtil } from "https://esm.sh/zod@3.25.76/index.d.cts"; 

const { addQuestionMarks } = objectUtil;
type addQuestionMarks<T extends object, _O = any> = [K in requiredKeys<T>]: T[K] & [K in optionalKeys<T>]?: T[K] & [k in keyof T]?: unknown;

§Type Parameters

§
T extends object
[src]
§
_O = any
[src]

§Type

§
[K in requiredKeys<T>]: T[K] & [K in optionalKeys<T>]?: T[K] & [k in keyof T]?: unknown
[src]