Javascript – Any way to make a call to a class before it is declared?
I have the following code working but and it currently looks like this: import { OtherClass } from "other-class" class VeryLongClass { } OtherClass.run(VeryLongClass); But I want it to look like this: import { OtherClass } from "other-class" OtherClass.run(VeryLongClass); class…