Skip to content

TypeAlias.PickPartial

github-actions[bot] edited this page Jul 8, 2026 · 34 revisions

umt / PickPartial

Type Alias: PickPartial<T, K>

PickPartial<T, K> = Omit<T, K> & Partial<Pick<T, K>>

Defined in: types/object/pickPartial.ts:6

Makes specified keys optional in an object type

Type Parameters

T

T

The object type

K

K extends keyof T

The keys to make optional

API

Classes

Interfaces

Type Aliases

Variables

Functions

Clone this wiki locally