标签: file-saver

Angular - Could not find a declaration file for module 'file-saver'

In my Angular-12 project I installed file-saver:

npm install file-saver@2.0.5

npm install --save exceljs

ng generate service services/export-excel
Run Code Online (Sandbox Code Playgroud)

Then in the export-excel service, I added:

import * as fs from 'file-saver';
Run Code Online (Sandbox Code Playgroud)

I got file-saver highlighted

with this error:

Could not find a declaration file for module 'file-saver'. 'c:/xampp/htdocs/myapp/node_modules/file-saver/dist/FileSaver.min.js' implicitly has an 'any' type. Try npm i --save-dev @types/file-saver if it exists or add a new declaration (.d.ts) file containing declare module 'file-saver';

But I didn't use:

@types/file-saver

How do I …

angular file-saver

9
推荐指数
3
解决办法
2万
查看次数

标签 统计

angular ×1

file-saver ×1