Is there a way to declare a function like this in typescript within a class? My goal is to list all members first, and then add the implementation of the functions afterwards. I want to easily see all the members of the class at a glance. However, my current approach does not seem to be working for me.
Here's an example:
class myClass {
this.myFunction = myFunction;
function myFunction(){
}
}
}