跳到主要内容

AugmentedOptional 类型

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

@vm-type UnknownType