Skip to content

declare声明全局变量&函数&模块

js
// // 1、对应14.jquery.d.ts中1
// $('html').text('123456')


// // 2、对应14.jquery.d.ts中2
// $(function() {
//     return ''
// })

// // 3、对应14.jquery.d.ts中3
// $('html').text('123456')
// $(function() {
//     return ''
// })


// 【重点】4、在项目开发中,有的库没有声明文件如何解决————声明一个全局模块
import $ from 'jquery' // 报错:无法找到模块“jquery”的声明文件。“C:/Users/chaos/Desktop/Code/typescript-study/node_modules/_jquery@3.5.1@jquery/dist/jquery.js”隐式拥有 "any" 类型。
console.log($('html').text('123456'))