Skip to content

Commit 93e207a

Browse files
Update packages/utils/src/lib/profiler/profiler.ts
Co-authored-by: Matěj Chalk <34691111+matejchalk@users.noreply.github.com>
1 parent d45ff5c commit 93e207a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/utils/src/lib/profiler/profiler.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ export type ProfilerOptions<
5858
*/
5959
export class Profiler<T extends Record<string, ActionTrackEntryPayload>> {
6060
#enabled: boolean;
61-
private readonly defaults: ActionTrackEntryPayload;
61+
readonly #defaults: ActionTrackEntryPayload;
6262
readonly tracks: Record<keyof T, ActionTrackEntryPayload> | undefined;
63-
private readonly ctxOf: ReturnType<typeof measureCtx>;
63+
readonly #ctxOf: ReturnType<typeof measureCtx>;
6464

6565
/**
6666
* Creates a new Profiler instance with the specified configuration.

0 commit comments

Comments
 (0)