We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecb1861 commit ca1d5e0Copy full SHA for ca1d5e0
packages/react-devtools-shared/src/backend/fiber/renderer.js
@@ -5859,7 +5859,11 @@ export function attach(
5859
return unresolvedSource;
5860
}
5861
5862
- const internalMcpFunctions = {};
+ type InternalMcpFunctions = {
5863
+ __internal_only_getComponentTree?: Function,
5864
+ };
5865
+
5866
+ const internalMcpFunctions: InternalMcpFunctions = {};
5867
if (__IS_INTERNAL_MCP_BUILD__) {
5868
// eslint-disable-next-line no-inner-declarations
5869
function __internal_only_getComponentTree(): string {
0 commit comments