gpt4 book ai didi

typescript - 有没有办法获得通用剩余参数的交集类型?

转载 作者:行者123 更新时间:2023-12-05 02:35:36 25 4
gpt4 key购买 nike

我编写了一个合并多个对象并返回的合并函数。

type A = { a: number };
type B = { b: number };
type C = { c: number };

const a: A = { a: 1 };
const b: B = { b: 2 };
const c: C = { c: 3 };

function merge<T extends any[]>(...args: T): { [k in keyof T]: T[k] } {
return args.reduce((previous, current) => {
return Object.assign(previous, current);
});
}

const m = merge(a, b, c);

m.a;
m.b;
m.c;

我对 m 类型的期望是 A & B & C,但我在编译器中得到了 [A, B, C] ,它给了我错误。

Property 'a' does not exist on type '[A, B, C]'.ts(2339)

是否有正确的方法来声明我的合并函数的返回类型?

最佳答案

您需要的是 intersection数组元素的数量:

TS Playground

type ArrayIntersection<T extends readonly unknown[]> = T extends [infer Head, ...infer Rest] ?
Head & ArrayIntersection<Rest>
: unknown;

function merge <T extends readonly any[]>(...args: T): ArrayIntersection<T> {
return args.reduce((previous, current) => {
return Object.assign(previous, current);
});
}

type A = { a: number };
type B = { b: number };
type C = { c: number };

declare const a: A;
declare const b: B;
declare const c: C;

const m = merge(a, b, c); // A & B & C

m.a; // number
m.b; // number
m.c; // number

请注意,不兼容的交叉类型(或具有类型不兼容的成员)将导致该类型的never:

declare const result: ArrayIntersection<[
{ a: string },
{ b: number },
{ person: { first: string } },
{ person: { last: string } },
{ b: string },
]>;

result.person; // { first: string; last: string; }
result.a; // string
result.b; // never

关于typescript - 有没有办法获得通用剩余参数的交集类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70499260/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com