将默认@types覆盖为自定义

发布于 2025-01-11 18:10:04 字数 365 浏览 0 评论 0原文

我在项目中添加了 @types/chrome 并希望覆盖 chrome.runtime.sendMessage 类型。因此,我创建了一个 d.ts 文件,并

declare namespace chrome.runtime {
  export function sendMessage(
    message: { action: 'a' | 'b'; value: string | number },
    responseCallback?: (response: any) => void
  ): void;
}

在卸载 @types/chrome 时添加了使用自定义类型,但当我安装类型时它不起作用。任何人都可以提供同样的帮助吗

I have added @types/chrome in the project and want to override chrome.runtime.sendMessage types. So I have created a d.ts file and have added

declare namespace chrome.runtime {
  export function sendMessage(
    message: { action: 'a' | 'b'; value: string | number },
    responseCallback?: (response: any) => void
  ): void;
}

when I uninstall @types/chrome the custom types are used, but when I install types it doesn't work. Can anyone help with the same

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文