So, as I know there are several ways to use interfaces in TypeScript:
Declare interfaces in d.ts files and than use them in .ts files
without importDeclare interaces in .ts files and import them when we need them
What is best practice to do? Use .d.ts or stick to the import
in my own TS project?
Thanks!