TypeScript/tests/baselines/reference/noImplicitAnyAndPrivateMembersWithoutTypeAnnotations.types
2014-08-15 14:37:48 -07:00

19 lines
372 B
Plaintext

=== 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
}