|
| 1 | +=== tests/cases/conformance/externalModules/typeOnly/types.ts === |
| 2 | +export interface Component {} |
| 3 | +>Component : Symbol(Component, Decl(types.ts, 0, 0)) |
| 4 | + |
| 5 | +=== tests/cases/conformance/externalModules/typeOnly/ns.ts === |
| 6 | +import type * as types from './types'; |
| 7 | +>types : Symbol(types, Decl(ns.ts, 0, 11)) |
| 8 | + |
| 9 | +export { types }; |
| 10 | +>types : Symbol(types, Decl(ns.ts, 1, 8)) |
| 11 | + |
| 12 | +=== tests/cases/conformance/externalModules/typeOnly/index.ts === |
| 13 | +import type * as types from './types'; |
| 14 | +>types : Symbol(types, Decl(index.ts, 0, 11)) |
| 15 | + |
| 16 | +import * as nestedNamespace from './ns'; |
| 17 | +>nestedNamespace : Symbol(nestedNamespace, Decl(index.ts, 1, 6)) |
| 18 | + |
| 19 | +class C implements types.Component {} |
| 20 | +>C : Symbol(C, Decl(index.ts, 1, 40)) |
| 21 | +>types.Component : Symbol(types.Component, Decl(types.ts, 0, 0)) |
| 22 | +>types : Symbol(types, Decl(index.ts, 0, 11)) |
| 23 | +>Component : Symbol(types.Component, Decl(types.ts, 0, 0)) |
| 24 | + |
| 25 | +class D implements nestedNamespace.types.Component {} |
| 26 | +>D : Symbol(D, Decl(index.ts, 3, 37)) |
| 27 | +>nestedNamespace.types.Component : Symbol(types.Component, Decl(types.ts, 0, 0)) |
| 28 | +>nestedNamespace.types : Symbol(nestedNamespace.types, Decl(ns.ts, 1, 8)) |
| 29 | +>nestedNamespace : Symbol(nestedNamespace, Decl(index.ts, 1, 6)) |
| 30 | +>types : Symbol(nestedNamespace.types, Decl(ns.ts, 1, 8)) |
| 31 | +>Component : Symbol(types.Component, Decl(types.ts, 0, 0)) |
| 32 | + |
0 commit comments