TypeScript/tests/baselines/reference/exportVisibility.types
2015-04-15 16:44:20 -07:00

20 lines
298 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 : boolean
}