TypeScript/tests/baselines/reference/templateStringWithEmbeddedTemplateStringES6.types
Daniel Rosenwasser cce4bfbc7c
Revert changes for template literal types, keeping tests. (#42588)
* Revert changes for template literal types, keeping tests.

* Update Baselines and/or Applied Lint Fixes

Co-authored-by: TypeScript Bot <typescriptbot@microsoft.com>
2021-02-03 14:49:03 -08:00

10 lines
358 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedTemplateStringES6.ts ===
var x = `123${ `456 ${ " | " } 654` }321 123${ `456 ${ " | " } 654` }321`;
>x : string
>`123${ `456 ${ " | " } 654` }321 123${ `456 ${ " | " } 654` }321` : string
>`456 ${ " | " } 654` : string
>" | " : " | "
>`456 ${ " | " } 654` : string
>" | " : " | "