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

18 lines
372 B
Text

=== tests/cases/compiler/app.ts ===
/// <reference path="test.d.ts" />
var x = new Something();
>x : Something
>new Something() : Something
>Something : typeof Something
=== tests/cases/compiler/test.d.ts ===
declare class Something
>Something : Something
{
private static someStaticVar;
>someStaticVar : any
private someVar;
>someVar : any
}