18 TREE_OPERATION_REORDER_CHILDREN,
19 TREE_OPERATION_SET_SUBTREE_MODE,
20▶ TREE_OPERATION_UPDATE_ERRORS_OR_WARNINGS,
21 TREE_OPERATION_UPDATE_TREE_BASE_DURATION,
22 TREE_OPERATION_APPLIED_ACTIVITY_SLICE_CHANGE,
· · ·
80 BridgeProtocol,
81} from 'react-devtools-shared/src/bridge';
82▶import UnsupportedBridgeOperationError from 'react-devtools-shared/src/UnsupportedBridgeOperationError';
83import type {DevToolsHookSettings} from '../backend/types';
84
· · ·
125 'React::DevTools::recordChangeDescriptions';
126
127▶type ErrorAndWarningTuples = Array<{id: number, index: number}>;
128
129export type Config = {
· · ·
185 collapseNodesByDefault: [],
186 componentFilters: [],
187▶ error: [Error],
188 hookSettings: [$ReadOnly<DevToolsHookSettings>],
189 hostInstanceSelected: [Element['id'] | null],
· · ·
212 _bridge: FrontendBridge;
213
214▶ // Computed whenever _errorsAndWarnings Map changes.
215 _cachedComponentWithErrorCount: number = 0;
216 _cachedComponentWithWarningCount: number = 0;
+ 130 more matches in this file