Skip to content

Commit

Permalink
Fix wrong types
Browse files Browse the repository at this point in the history
  • Loading branch information
mhennoch committed Sep 18, 2024
1 parent ad6f19f commit 7798d3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/profiling/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ export function startProfiling(options: ProfilingOptions) {

extStartProfiling(extension, startOptions);

let cpuSamplesCollectInterval: NodeJS.Timer;
let memSamplesCollectInterval: NodeJS.Timer;
let cpuSamplesCollectInterval: NodeJS.Timeout;
let memSamplesCollectInterval: NodeJS.Timeout;
let exporters: ProfilingExporter[] = [];

// Tracing needs to be started after profiling, setting up the profiling exporter
Expand Down

0 comments on commit 7798d3a

Please sign in to comment.