(name: string)
| 58 | } |
| 59 | |
| 60 | getServiceByName(name: string) { |
| 61 | return this.#services[name]; |
| 62 | } |
| 63 | |
| 64 | registerView(viewClass: BaseViewType) { |
| 65 | if (!Object.prototype.isPrototypeOf.call(BaseView, viewClass)) |
no outgoing calls
no test coverage detected