面试题答案一键面试type Person = { name: string; age: number; }; type StringifyPerson = { [K in keyof Person]: string; };