I just started with dagger and i don't know how to get type hints from modules installed from daggerverse.
I installed the node module from the daggerverse github repository. The module works fine when running. But because it is not in the /sdk of the /dagger folder, tsconfig is not capable of providing types for the node module dependency.
¿Is it possible to get a d.ts or other configuration to make the .node() method typed from the dag object in index.ts?
If is not possible yet ¿Is it in the roadmap?
I know that the modules could be written in different languages, but if they are auto documented into daggerverse, it should be possible to extract the same types into a type declaration file (at least for typescript sdk).
Currently in the quickstart project. All types are gone in typescript after calling
dag.node().someMethod()
Because .node() returns 'any' type.