DEBSOURCES
Skip Quicknav
sources / node-typescript / 4.9.5%2Bds1-2 / tests / cases / compiler / objectSpreadWithinMethodWithinObjectWithSpread.ts
12345678910
const obj = {}; const a = { ...obj, prop() { return { ...obj, metadata: 213 }; } };