See #49. Add unformatted TypeScript example.

This commit is contained in:
Glavin Wiechert 2014-10-16 21:40:44 -03:00
parent dcc9e2d3b5
commit 80701cf2cd
1 changed files with 6 additions and 6 deletions

View File

@ -1,8 +1,8 @@
module TestModule {
export class A {
constructor(private a: string) {
}
}
export class B extends A {
}
export class A {
constructor(private a: string) {
}
}
export class B extends A {
}
};