I just want to declare a static property in typescript interface? I have not found anywhere regarding this.
interface myInterface { static
You can merge interface with namespace using the same name:
interface myInterface { } namespace myInterface { Name:string; }
But this interface is only useful to know that its have property Name. You can not implement it.
Name