Is it possible to access the class itself inside of a classes function: class MyClass { static get myFunction() { return "foo"; } const
I'm having the following TypeScript class export class Vehicule extends TrackableEntity { vehiculeId: number; constructor() { super(); return supe
I have a dependency that is a singleton class like so: // dependency.js class Dependency { foo() { ... } } export default new Dependency(); I'm trying to