gpt4 book ai didi

typescript - 如何为 Cypress 任务返回类型定义类型?

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

我的目标是为我的 cypress 任务定义类型,用 typescript 编写。

我目前在使用自定义任务时有这个:

cy.task('customTask').then(v => {
// v is undefined here - how can I configure types?
});

plugins/index.ts

module.exports = (on) => {
on('task', {
customTask: () => {
return 23;
}
});
}

最佳答案

/// <reference types="cypress" />
declare global {
namespace Cypress {
interface Chainable {
task(event: 'customTask'): Chainable<number>;
}
}
}

关于typescript - 如何为 Cypress 任务返回类型定义类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63522525/

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