取出一个值的所有类型type A = {
name: string;
age: number
}
type B = A[keyof A]
// B类型是A的值的联合类型
函数传参方式传多个参数,并希望保持他们的顺序,可以写成数
2023-08-23