使用环境模块
如果你只想表明导入的意图 (因此你不想声明全局)但不想打扰任何显式定义,则可以导入环境模块。
// in a declarations file (like declarations.d.ts)
declare module "jquery"; // note that there are no defined exports
然后,你可以从环境模块导入。
// some other .ts file
import {$, jQuery} from "jquery";
从上面声明的模块(如 $
和 jQuery
)导入的任何内容都将是 any
类型