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

10 lines
313 B
Plaintext

=== tests/cases/compiler/declarationEmitIndexTypeNotFound.ts ===
export interface Test {
>Test : Symbol(Test, Decl(declarationEmitIndexTypeNotFound.ts, 0, 0))
[index: TypeNotFound]: any;
>index : Symbol(index, Decl(declarationEmitIndexTypeNotFound.ts, 1, 5))
>TypeNotFound : Symbol(TypeNotFound)
}