TypeScript/tests/baselines/reference/umd2.types

17 lines
234 B
Text

=== tests/cases/conformance/externalModules/a.ts ===
Foo.fn();
>Foo.fn() : any
>Foo.fn : any
>Foo : any
>fn : any
let x: Foo.Thing;
>x : any
>Foo : any
let y: number = x.n;
>y : number
>x.n : any
>x : any
>n : any