Skip to content

Commit

Permalink
use more primitive types
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardgou-sentry committed Feb 29, 2024
1 parent 226c543 commit fc676fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/tracing-internal/src/browser/instrument.ts
Expand Up @@ -21,11 +21,11 @@ interface PerformanceEntry {
toJSON(): Record<string, unknown>;
}
interface PerformanceEventTiming extends PerformanceEntry {
processingStart: DOMHighResTimeStamp;
processingEnd: DOMHighResTimeStamp;
duration: DOMHighResTimeStamp;
processingStart: number;
processingEnd: number;
duration: number;
cancelable?: boolean;
target?: Element;
target?: unknown | null;
interactionId?: number;
}

Expand Down

0 comments on commit fc676fc

Please sign in to comment.