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

11 lines
196 B
TypeScript

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