typescript inner class

Solutions on MaxInterview for typescript inner class by the best coders in the world

showing results for - "typescript inner class"
Rodrigo
07 Feb 2017
1class Foo {
2    static Bar = class {
3
4    }
5}
6
7// works!
8var foo = new Foo();
9var bar = new Foo.Bar();