面试题答案一键面试type User = {name: string; age: number;}; type UserOptional = { [P in keyof User]?: User[P]; };