({
bridge,
id,
path,
rendererID,
}: {
bridge: FrontendBridge,
id: number,
path: Array<string | number>,
rendererID: number,
})
| 72 | } |
| 73 | |
| 74 | export function copyInspectedElementPath({ |
| 75 | bridge, |
| 76 | id, |
| 77 | path, |
| 78 | rendererID, |
| 79 | }: { |
| 80 | bridge: FrontendBridge, |
| 81 | id: number, |
| 82 | path: Array<string | number>, |
| 83 | rendererID: number, |
| 84 | }): void { |
| 85 | bridge.send('copyElementPath', { |
| 86 | id, |
| 87 | path, |
| 88 | rendererID, |
| 89 | }); |
| 90 | } |
| 91 | |
| 92 | export function inspectElement( |
| 93 | bridge: FrontendBridge, |
no outgoing calls
no test coverage detected