mirror of
https://github.com/swc-project/swc.git
synced 2024-12-28 08:04:43 +03:00
12 lines
175 B
TypeScript
12 lines
175 B
TypeScript
|
// @checkJs: true
|
||
|
// @allowJs: true
|
||
|
// @noEmit: true
|
||
|
// @filename: /a.js
|
||
|
|
||
|
/**
|
||
|
* @param {{ cause?: string }} [options]
|
||
|
*/
|
||
|
function foo({ cause } = {}) {
|
||
|
return cause;
|
||
|
}
|