// @declaration: true // @allowJs: true // @emitDeclarationOnly: true // @filename: /a.js const bar = { arguments: {} } class A { /** * @param {object} [foo={}] */ m(foo = {}) { /** * @type object */ this.foo = foo; /** * @type object */ this.bar = bar.arguments; } }