Can types for classes be defined when importing them from a distribution folder?
For example, in instances where I use...
import MyClass from "dist/classes/myClass.ts";
const instance = new MyClass();
Is it feasible to create a .d.ts file that accommodates this scenario, or is it not possible?