TypeScript/tests/cases/conformance/jsdoc/paramTagNestedWithoutTopLevelObject.ts

11 lines
187 B
TypeScript

// @noEmit: true
// @allowJs: true
// @checkJs: true
// @Filename: paramTagNestedWithoutTopLevelObject.js
/**
* @param {number} xyz.p
*/
function g(xyz) {
return xyz.p;
}