TypeScript/tests/cases/conformance/types/spread/spreadContextualTypedBindingPattern.ts
2017-10-03 12:43:23 -07:00

12 lines
267 B
TypeScript

// #18308
interface Person {
naam: string,
age: number
}
declare const bob: Person
declare const alice: Person
// [ts] Initializer provides no value for this binding element and the binding element has no default value.
const { naam, age } = {...bob, ...alice}