Skip to content

Commit 52a588b

Browse files
committed
fix missing declare in .d.ts file
1 parent 09a123d commit 52a588b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ declare module "@babel/plugin-*" {
88
/** `performance` is a global reference for `require('perf_hooks').performance`
99
* https://nodejs.org/api/globals.html#performance
1010
* @since v16.0.0 */
11-
var performance: typeof globalThis extends { onmessage: any, performance: infer T } ? T : typeof import("perf_hooks").performance
11+
declare var performance: typeof globalThis extends { onmessage: any, performance: infer T } ? T : typeof import("perf_hooks").performance

0 commit comments

Comments
 (0)