【发布时间】:2021-08-27 04:59:08
【问题描述】:
安装以下内容(从 tabulator-tables@4.9.1 开始):
npm install tabulator-tables
npm install @types/tabulator-tables
然后进行以下导入
import Tabulator from 'tabulator-tables';
导致错误:Module Usage (Error node_modules @types tabulator tables index.d.ts' is not a module)。
改为使用此导入
import 'tabulator-tables';
不输出错误,并允许加载类型信息,但在运行时(例如,在 Angular 12 项目上)实际上不允许访问 Tabulator 对象,从而导致类似 ReferenceError: Tabulator is not defined 的错误。
【问题讨论】:
标签: angular typescript tabulator definitelytyped