TypeScript中如何获取一个接口内定义函数的参数类型呢?

发布于 2022-09-13 01:20:34 字数 741 浏览 24 评论 0

题目描述

TypeScript中如何获取一个接口内定义函数的参数类型呢?

题目来源及自己的思路

想了下不知道怎么做。

相关代码

interface Page {
    fill(value: string, options?: {
        force?: boolean;
        noWaitAfter?: boolean;
        timeout?: number;
    }): Promise<void>;
}

interface InputProps extends Parameters<Page['fill']> {
    locator?: string
}

let a: InputProps = { value: 'a', locator: 'b' } // Error

报错信息:
Type '{ value: string; locator: string; }' is not assignable to type 'InputProps'.
Object literal may only specify known properties, but 'value' does not exist in type 'InputProps'. Did you mean to write 'values'?

你期待的结果是什么?实际看到的错误信息又是什么?

获取'fill'的参数类型.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月亮是我掰弯的 2022-09-20 01:20:34

Parameters<Page['fill']> 实际拿到的是一个tuple数组类型:

[string, { force?: boolean; noWaitAfter?: boolean; timeout?: number; }]

貌似没法拿到函数的参数名,相关的讨论:https://github.com/Microsoft/...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文