mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 13:11:31 +03:00
b887b30092
**Description:** This is required for https://github.com/swc-project/swc/pull/6981 and https://github.com/swc-project/swc/pull/6950
15 lines
187 B
TypeScript
15 lines
187 B
TypeScript
// @checkJs: true
|
|
// @allowJs: true
|
|
// @noEmit: true
|
|
// @filename: /a.js
|
|
|
|
/**
|
|
* @typedef Foo
|
|
* @property {string} a
|
|
*/
|
|
|
|
/**
|
|
* @param {Foo} [options]
|
|
*/
|
|
function f({ a = "a" }) {}
|