TypeScript/tests/baselines/reference/contextualTyping34.js

6 lines
124 B
TypeScript

//// [contextualTyping34.ts]
var foo = <{ id: number;}> ({id:4});
//// [contextualTyping34.js]
var foo = ({ id: 4 });