'Module csv-writer , how to use import?
Const createCSvwriter = require('csv-writer').createObjectCsvWriter;
How can we do it with import
Solution 1:[1]
Looking at https://github.com/ryu1kn/csv-writer/blob/master/src/index.ts you should be able to do
import { createObjectCsvWriter } from 'csv-writer'
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
