We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d45ff5c commit 93e207aCopy full SHA for 93e207a
packages/utils/src/lib/profiler/profiler.ts
@@ -58,9 +58,9 @@ export type ProfilerOptions<
58
*/
59
export class Profiler<T extends Record<string, ActionTrackEntryPayload>> {
60
#enabled: boolean;
61
- private readonly defaults: ActionTrackEntryPayload;
+ readonly #defaults: ActionTrackEntryPayload;
62
readonly tracks: Record<keyof T, ActionTrackEntryPayload> | undefined;
63
- private readonly ctxOf: ReturnType<typeof measureCtx>;
+ readonly #ctxOf: ReturnType<typeof measureCtx>;
64
65
/**
66
* Creates a new Profiler instance with the specified configuration.
0 commit comments