createMethodWrapper()

in lib/connection.ts [171:175]


  createMethodWrapper(methodName: string) {
    return (...args: any[]) => {
      return this.callRemoteMethod(methodName, ...args);
    };
  }