TypeScript/tests/baselines/reference/experimentalDecoratorMetadataUnresolvedTypeObjectInEmit.types
Anders Hejlsberg a4f9bf0fce
Create type aliases for unresolved type symbols (#45976)
* Create type aliases for unresolved type symbols

* Accept new baselines

* Update fourslash tests

* Unresolved import aliases create tagged unresolved symbols

* Add comments

* Accept new baselines

* Add fourslash tests
2021-09-23 13:21:27 -07:00

24 lines
684 B
Plaintext

=== tests/cases/compiler/types.d.ts ===
declare namespace A {
No type information for this code. export namespace B {
No type information for this code. export namespace C {
No type information for this code. export namespace D {
No type information for this code. }
No type information for this code. }
No type information for this code. }
No type information for this code.}
No type information for this code.=== tests/cases/compiler/usage.ts ===
class Foo {
>Foo : Foo
f(@decorate user: A.B.C.D.E): void {}
>f : (user: A.B.C.D.E) => void
>decorate : any
>user : A.B.C.D.E
>A : any
>B : any
>C : any
>D : any
}