I just want to declare a static property in typescript interface? I have not found anywhere regarding this.
interface myInterface { static
@duncan's solution above specifying new() for the static type works also with interfaces:
new()
interface MyType { instanceMethod(); } interface MyTypeStatic { new():MyType; staticMethod(); }