I'm interested in utilizing the neat-csv library, however, I have encountered an issue with it not having a typescript definition file available. Various blogs suggest creating a basic definition file as a starting point:
declare var neatCsv: any;
My concern now is about what to do next with this definition file. Where should it be placed? How can the definition file be linked with the actual implementation located in node_modules/neat-csv
? And finally, how can it be imported into an existing typescript file?