TypeScript/tests/cases/compiler/declFileTypeofClass.ts

17 lines
237 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
// @declaration: true
class c {
static x : string;
private static y: number;
private x3: string;
public y3: number;
}
var x: c;
var y = c;
var z: typeof c;
class genericC<T>
{
}
var genericX = genericC;