gpt4 book ai didi

typescript 只复制函数参数而不是返回类型

转载 作者:行者123 更新时间:2023-12-04 12:13:33 32 4
gpt4 key购买 nike

我有一些 util 方法,我想知道是否有办法将参数从一种方法复制到另一种方法。我在玩 typeof并尝试以这种方式键入第二个函数,但我无法弄清楚。

declare function foo(a: number, b: string): number;

现在我想要一个类型 barfoo的参数,但不是返回类型,例如,假设它调用 foo 但不返回任何内容:
const bar = (...args) => { foo(...args); }

现在我可以声明 bar具有与 foo 完全相同的类型:
const bar: typeof foo = (...args) => { foo(...args); }

但现在返回类型不匹配。那么我该怎么做:
  • 只需复制参数签名
  • 更改我从 typeof foo 获得的返回类型
  • 最佳答案

    有内置Parameters类型

    declare function foo(a: number, b: string): number;

    type fooParameters = Parameters<typeof foo>;

    declare const bar: (...parameters: fooParameters) => void;
    // inferred as const bar: (a: number, b: string) => void

    关于 typescript 只复制函数参数而不是返回类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55386842/

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