跳到主要内容

AugmentedOptional type

@vm-type UnknownType

Signature:

declare type AugmentedOptional<T extends object, K extends keyof T = keyof T> = Omit<T, K> & Partial<Pick<T, K>>;

Links: declare type AugmentedOptional<T extends object, K extends keyof T = keyof T> = Omit<T, K> & Partial<Pick<T, K>>;