Skip to content

Commit b979e1d

Browse files
author
John Doe
committed
refactor: remove unused type
1 parent 44e22df commit b979e1d

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

packages/utils/src/lib/user-timing-extensibility-api.type.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -80,18 +80,3 @@ export type MarkOptionsWithDevtools = {
8080
export type MeasureOptionsWithDevtools = {
8181
detail?: WithDevToolsPayload<TrackEntryPayload>;
8282
} & 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-
name: string,
94-
startMark?: string,
95-
endMark?: string,
96-
) => PerformanceMeasure);
97-
};

0 commit comments

Comments
 (0)