Skip to content

Commit 1713ea7

Browse files
committed
fix linting
1 parent e051cbe commit 1713ea7

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

packages/core/src/utils-hoist/vercelWaitUntil.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import { GLOBAL_OBJ } from './worldwide';
22

33
interface VercelRequestContextGlobal {
4-
get?(): {
5-
waitUntil?: (task: Promise<unknown>) => void;
6-
} | undefined;
4+
get?():
5+
| {
6+
waitUntil?: (task: Promise<unknown>) => void;
7+
}
8+
| undefined;
79
}
810

911
/**

0 commit comments

Comments
 (0)