Helper to extend an existing class with new properties.
the clazz to extend.
the properties specification.
class MyClazz extends Mutable {}properties(MyClazz, { msg: { value: "test" }});let o = new MyClazz({ msg: "test1"}); Copy
class MyClazz extends Mutable {}properties(MyClazz, { msg: { value: "test" }});let o = new MyClazz({ msg: "test1"});
Helper to extend an existing class with new properties.