TypeScript/tests/baselines/reference/importTypeTypeofClassStaticLookup.symbols

15 lines
388 B
Plaintext

=== tests/cases/compiler/a.d.ts ===
export declare class A {
>A : Symbol(A, Decl(a.d.ts, 0, 0))
static foo(): void;
>foo : Symbol(A.foo, Decl(a.d.ts, 0, 24))
}
=== tests/cases/compiler/index.d.ts ===
export const foo: typeof import("./a").A.foo;
>foo : Symbol(foo, Decl(index.d.ts, 0, 12))
>A : Symbol(A, Decl(a.d.ts, 0, 0))
>foo : Symbol(A.foo, Decl(a.d.ts, 0, 24))