Given an implementation of a class: ```ts // file.js export default class File { ... } ``` How can you use the type without importing the module: ```ts // another export default Util { /** @param {File} file */ getFile(file) { } } ``` One option is to use [`@module`](http://usejsdoc.org/tags-module.html) e.g.: ```ts /** @param {module:./file:File} file */ getFile(file) { } ```
Given an implementation of a class:
How can you use the type without importing the module:
One option is to use
@modulee.g.: