How to define static property in TypeScript interface

I just want to declare a static property in typescript interface? I have not found anywhere regarding this.

interface myInterface {
  static Name:string;
}

Is it possible?

18 Answers
18

Leave a Comment