I'm using draw2d on angular2 (draw2d-wrapper). I'm trying extend a class from them.
export class Table extends (draw2d.shape.layout.VerticalLayout as { new(): any }) {
static NAME: "Table";
/*Some code*/
}
on my code when I do
var t = new Table();
the t.NAME property came as "draw2d.shape.layout.VerticalLayout".
Can I override this JavaScript property in a angular2 typescript code?