TypeScript/tests/baselines/reference/exportVisibility.types
2016-09-01 14:25:44 -07:00

20 lines
295 B
Plaintext

=== tests/cases/compiler/exportVisibility.ts ===
export class Foo {
>Foo : Foo
}
export var foo = new Foo();
>foo : Foo
>new Foo() : Foo
>Foo : typeof Foo
export function test(foo: Foo) {
>test : (foo: Foo) => boolean
>foo : Foo
>Foo : Foo
return true;
>true : true
}