Skip to content

Partial

type Partial<T> = { [P in keyof T]?: T[P] };

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts:1585

Make all properties in T optional

Type Parameter
T