I have a class that I have several properties declared on this in the constructor.
class DevModuleLookup {
constructor() {
this.kGlobal = 'z'
this.kHelpMessage = '...'
}
...
}
I get a flow error
property `kGlobal`. Property not found in DevModuleLookup
I could use class properties but they are still stage 2 ATM and I cannot use them until they reach stage 3.
Any suggestions?