ts 中使用 import导入包 包的.d.ts文件貌似没有生效
我在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")'.
这是我vue3项目中node_modules下的包
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你那个 obj 也不是默认导出呀。