TypeScript/tests/cases/projects/moduleMergeOrder/a.ts
2014-07-12 17:30:19 -07:00

18 lines
318 B
TypeScript

module Test {
class A {
one: string;
two: boolean;
constructor (t: string) {
this.one = t;
this.two = false;
}
}
export class B {
private member: A[];
constructor () {
this.member = [];
}
}
}