We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecf8098 commit 36ee3d6Copy full SHA for 36ee3d6
packages/react/src/profiler.tsx
@@ -86,10 +86,14 @@ export type ProfilerProps = {
86
* spans based on component lifecycles.
87
*/
88
class Profiler extends React.Component<ProfilerProps> {
89
+ /**
90
+ * The span of the mount activity
91
+ * Made protected for the React Native SDK to access
92
+ */
93
+ protected _mountSpan: Span | undefined = undefined;
94
+
95
// The activity representing how long it takes to mount a component.
96
private _mountActivity: number | null = null;
- // The span of the mount activity
- private _mountSpan: Span | undefined = undefined;
97
98
// eslint-disable-next-line @typescript-eslint/member-ordering
99
public static defaultProps: Partial<ProfilerProps> = {
0 commit comments