( missing: string[], field: string, value: string | undefined, )
| 79 | } |
| 80 | |
| 81 | function readRemoteBridgeField( |
| 82 | missing: string[], |
| 83 | field: string, |
| 84 | value: string | undefined, |
| 85 | ): string { |
| 86 | if (value) return value; |
| 87 | missing.push(field); |
| 88 | return ''; |
| 89 | } |
| 90 | |
| 91 | function resolveRemoteBridgeConfig( |
| 92 | flags: ReactDevtoolsCommandOptions['flags'], |
no test coverage detected