TypeScript/tests/baselines/reference/noImplicitAnyAndPrivateMembersWithoutTypeAnnotations.types

19 lines
372 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== 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
}