TypeScript/tests/baselines/reference/templateStringInPropertyAssignmentES6.types

9 lines
230 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/templates/templateStringInPropertyAssignmentES6.ts ===
var x = {
>x : { a: string; }
>{ a: `abc${ 123 }def${ 456 }ghi`} : { a: string; }
a: `abc${ 123 }def${ 456 }ghi`
>a : string
}