(instance: ComponentInstance, app: App)
| 123 | } |
| 124 | |
| 125 | async inspectComponent(instance: ComponentInstance, app: App) { |
| 126 | const payload = await this.callHook(Hooks.INSPECT_COMPONENT, { |
| 127 | app, |
| 128 | componentInstance: instance, |
| 129 | instanceData: null, |
| 130 | }) |
| 131 | return payload.instanceData |
| 132 | } |
| 133 | |
| 134 | async getComponentBounds(instance: ComponentInstance) { |
| 135 | const payload = await this.callHook(Hooks.GET_COMPONENT_BOUNDS, { |
no test coverage detected