ts 中使用 import导入包 包的.d.ts文件貌似没有生效

发布于 2022-09-30 23:11:38 字数 1557 浏览 27 评论 0

我在vue3的app.vue里导入我写的包

<script lang="ts">
import { defineComponent } from 'vue'

import obj from '@xinbear/test2'

console.log('obj', obj)
obj.test2() // 出现问题的语句

// console.log(a)

export default defineComponent({
  name: 'App'
})
</script>

如果我不执行obj.test2()程序是可以运行的
但我加上obj.test2()便会报错

TS2339: Property 'test2' does not exist on type 'typeof import("/Users/xinzhongjie/work/me_project/lerna-vue3/packages/test2/lib/test2")'.

image.png

这是我vue3项目中node_modules下的包
image.png
test2.js

'use strict';
const obj = {
    test2: function(val) {
        console.log('val:', val)
    }
}
module.exports = obj;

test2.d.ts

export declare type obj = {
    test2: (val: string) => void
}

package.json

{
  "name": "@xinbear/test2",
  "version": "1.0.0",
  "description": "> TODO: description",
  "author": "xinbear <[email protected]>",
  "homepage": "",
  "license": "ISC",
  "main": "lib/test2.js",
  "directories": {
    "lib": "lib",
    "test": "__tests__"
  },
  "files": [
    "lib"
  ],
  "publishConfig": {
    "registry": "https://registry.npm.taobao.org/"
  },
  "types": "lib/test2.d.ts",
  "scripts": {
    "test": "echo \"Error: run tests from root\" && exit 1"
  }
}

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

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

发布评论

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

评论(2

鸢与 2022-10-07 23:11:39
declare namespace obj{
    test2: (val: string) => void
}
蓝颜夕 2022-10-07 23:11:39

你那个 obj 也不是默认导出呀。

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