TypeScript/tests/baselines/reference/taggedTemplateStringsWithTagNamedDeclare.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

14 lines
355 B
Plaintext

=== tests/cases/conformance/es6/templates/taggedTemplateStringsWithTagNamedDeclare.ts ===
function declare(x: any, ...ys: any[]) {
>declare : (x: any, ...ys: any[]) => void
>x : any
>ys : any[]
}
declare `Hello ${0} world!`;
>declare `Hello ${0} world!` : void
>declare : (x: any, ...ys: any[]) => void
>`Hello ${0} world!` : string
>0 : 0