TS 中常见工具类型的使用及实现Pick<Type, Keys> 作用: 从 Type 选择一组 Keys 属性 使用: 123456789101112export interface Todo { remark: string; required: b...2023-06-06Typescript