Answers for "typescript inner class"

1

typescript inner class

class Foo {
    static Bar = class {

    }
}

// works!
var foo = new Foo();
var bar = new Foo.Bar();
Posted by: Guest on May-02-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language