Steps to reproduce
From
test: submodule/conformance/jsDeclarationsFunctionPrototypeStatic.ts
after #826 is merged
/** @callback {Done}
* @param {number} failures - the number of failures
*/
Behavior with typescript@5.8
export type Done = (failures: number) => any;
Behavior with tsgo
export type Done = (failures: number) ;