interface A { a?: number };
interface B { a?: string };
function copy<
Source extends object,
Destination extends { [destinationKey in keyof Source]?: (1) }
>(
source: Source,
key: keyof Source,
destination: Destination,
transformer: (value: (2)) => (3)
) {
if (source[key] !== undefined) {
destination[key] = transformer ? transformer(source[key]) : source[key];
}
}
const a: A = { a: 123 };
const b: B = {};
copy(a, "a", b, (value) => value.toString());
在上面的示例中,我可以用于以下占位符:
Destination
中相应键关联的Source
中的值类型。Source
中与参数key
指定的键关联的值的类型。Destination
指定的键关联的key
中的值类型。答案 0 :(得分:1)
您需要一个额外的类型参数,表示将要传递的实际键。该参数将根据传递给key
参数的值推断为字符串文字类型。使用这种新类型,我们可以使用类型查询来获取Source
和Destination
类型中type的特定属性。
此外,由于我们只关心特定的K
键,因此我们在定义Destination
类型为具有键时可以使用它(而不是指定Destination
必须具有{ {1}})。由于我们实际上并不关心目标属性的类型,因此它只是存在并且Source
函数必须返回与此属性相同类型的值,因此我们可以在{中指定属性的类型{1}}为transformer
。
Destination