(onEvent: (notification: RuntimeNotification) => void)
| 192 | } |
| 193 | |
| 194 | subscribeToChanges(onEvent: (notification: RuntimeNotification) => void): () => void { |
| 195 | return this.options.runtime.subscribe((notification) => { |
| 196 | if (isOpenADENotification(notification)) onEvent(notification) |
| 197 | }) |
| 198 | } |
| 199 | |
| 200 | close(): void { |
| 201 | this.options.runtime.close() |
nothing calls this directly
no test coverage detected