I just want to declare a static property in typescript interface? I have not found anywhere regarding this.
interface myInterface { static
Yes, it is possible. Here is the solution
export interface Foo { test(): void; } export namespace Foo { export function statMethod(): void { console.log(2); } }