We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44e22df commit b979e1dCopy full SHA for b979e1d
packages/utils/src/lib/user-timing-extensibility-api.type.ts
@@ -80,18 +80,3 @@ export type MarkOptionsWithDevtools = {
80
export type MeasureOptionsWithDevtools = {
81
detail?: WithDevToolsPayload<TrackEntryPayload>;
82
} & Omit<MeasureOptions, 'detail'>;
83
-
84
-// Mimics performance.mark/measure API with devtools extensions
85
-export type NativePerformanceAPI = {
86
- mark: (name: string, options?: MarkOptionsWithDevtools) => PerformanceMark;
87
88
- measure: ((
89
- name: string,
90
- options: MeasureOptionsWithDevtools,
91
- ) => PerformanceMeasure) &
92
- ((
93
94
- startMark?: string,
95
- endMark?: string,
96
- ) => PerformanceMeasure);
97
-};
0 commit comments