TypeScript/tests/cases/conformance/jsdoc/declarations/jsDeclarationsMissingGenerics.ts

14 lines
218 B
TypeScript
Raw Normal View History

// @allowJs: true
// @checkJs: true
// @target: es5
// @outDir: ./out
// @declaration: true
// @filename: file.js
/**
* @param {Array} x
*/
function x(x) {}
/**
* @param {Promise} x
*/
function y(x) {}