Method
onResourceListChange
(fn: (resourceList: IPublicResourceList) => void)
Source from the content-addressed store, hash-verified
| 179 | } |
| 180 | |
| 181 | onResourceListChange(fn: (resourceList: IPublicResourceList) => void): () => void { |
| 182 | this.emitter.on(CHANGE_EVENT, fn); |
| 183 | return () => { |
| 184 | this.emitter.off(CHANGE_EVENT, fn); |
| 185 | }; |
| 186 | } |
| 187 | |
| 188 | onWindowRendererReady(fn: () => void): IPublicTypeDisposable { |
| 189 | this.emitter.on(EVENT.WINDOW_RENDER_READY, fn); |
Callers
nothing calls this directly
Tested by
no test coverage detected