Tag Kind: Block
The @import
tag is recognized for use in JavaScript projects which can use it
to declare type imports since TypeScript 5.5. Any comment containing @import
will be ignored by TypeDoc.
Taken from the TypeScript 5.5 release notes
/** @import { SomeType } from "some-module" */
/**
* @param {SomeType} myValue
*/
function doSomething(myValue) {
// ...
}