gpt4 book ai didi

typescript - 创建映射类型以 promise 返回值

转载 作者:搜寻专家 更新时间:2023-10-30 20:57:14 24 4
gpt4 key购买 nike

假设我正在处理对应于以下接口(interface)的对象:

interface Foo {
getCount(): number;
doSomething(): boolean;
}

它上面只有函数,没有一个函数是异步的。但是,我并不总是可以同步访问对象,在某些情况下会处理异步版本,其中所有函数返回值都包含在 Promises 中。像这样:

interface AsyncFoo {
getCount(): Promise<number>;
doSomething(): Promise<boolean>;
}

我正在尝试创建一个 Typescript 映射类型来表示这种转换,因为我有大量的对象接口(interface)并且不想简单地复制每个接口(interface)并最终得到两个 interface [name] interface Async[name] 以及所有重复的方法原型(prototype)。

我的第一个想法是也许我可以像这样修改接口(interface):

type Self<T> = T;
interface Foo<S = Self> {
getCount(): S<number>;
doSomething(): S<boolean;
}
type AsyncFoo = Foo<Promise>;

但是 SelfPromise 都要求在我使用它们时静态地给出泛型,而不是能够以这种向后的方式使用它们。

所以接下来我尝试创建某种映射类型,例如:

type Promisify<T> = {[K in keyof T]: Promise<T[K]>}

当然,这将接口(interface)的每个完整方法都包装在一个 Promise 中,而不仅仅是返回值,给我:

type PromisifiedFoo = {
getCount: Promise<() => number>;
doSomething: Promise<() => boolean>;
}

我试图通过在 Promisify 的通用 T 上使用范围界定来对此进行扩展,例如:

type Promisify<T extends {[key: string]: <S>() => S}> = ...

但我似乎无法将它们全部组合在一起。

现在我来了。我有什么方法可以构建一个类型(映射或其他方式),将这种“Promisify”转换表示为类型的返回值?

最佳答案

有了新的Conditional Types在 Typescript 2.8 中,您可以执行以下操作:

// Generic Function definition
type AnyFunction = (...args: any[]) => any;
// Extracts the type if wrapped by a Promise
type Unpacked<T> = T extends Promise<infer U> ? U : T;

type PromisifiedFunction<T extends AnyFunction> =
T extends () => infer U ? () => Promise<Unpacked<U>> :
T extends (a1: infer A1) => infer U ? (a1: A1) => Promise<Unpacked<U>> :
T extends (a1: infer A1, a2: infer A2) => infer U ? (a1: A1, a2: A2) => Promise<Unpacked<U>> :
T extends (a1: infer A1, a2: infer A2, a3: infer A3) => infer U ? (a1: A1, a2: A2, a3: A3) => Promise<Unpacked<U>> :
// ...
T extends (...args: any[]) => infer U ? (...args: any[]) => Promise<Unpacked<U>> : T;

type Promisified<T> = {
[K in keyof T]: T[K] extends AnyFunction ? PromisifiedFunction<T[K]> : never
}

示例:

interface HelloService {
/**
* Greets the given name
* @param name
*/
greet(name: string): string;
}

function createRemoteService<T>(): Promisified<T> { /*...*/ }

const hello = createRemoteService<HelloService>();
// typeof hello = Promisified<HelloService>
hello.greet("world").then(str => { /*...*/ })
// typeof hello.greet = (a1: string) => Promise<string>

关于typescript - 创建映射类型以 promise 返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48196437/

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