class MyClass{ constructor(config) { this.config = config; } async method1(paramA) { // do_stuff... } method2(paramB) { this.method1(); } }