swc/crates/swc_ecma_parser/tests/tsc/optionalBindingParameters4.ts

12 lines
175 B
TypeScript
Raw Normal View History

// @checkJs: true
// @allowJs: true
// @noEmit: true
// @filename: /a.js
/**
* @param {{ cause?: string }} [options]
*/
function foo({ cause } = {}) {
return cause;
}