(moduleName: string, actionName: string)
| 58 | } |
| 59 | |
| 60 | resolve(moduleName: string, actionName: string): RuntimeHostAction | undefined { |
| 61 | return this.modules.get(moduleName)?.get(actionName)?.action; |
| 62 | } |
| 63 | |
| 64 | private registerAction( |
| 65 | moduleName: string, |