fix: Support @types/node@25.0.2 (#25532)

### What does this PR do?

CI failed again because of a change in @types/node

### How did you verify your code works?

bun-types.test.ts passes
This commit is contained in:
Alistair Smith
2025-12-15 11:29:04 -08:00
committed by GitHub
parent ed1d6e595c
commit fa996ad1a8

View File

@@ -86,7 +86,7 @@ declare global {
reallyExit(code?: number): never;
dlopen(module: { exports: any }, filename: string, flags?: number): void;
_exiting: boolean;
noDeprecation: boolean;
noDeprecation?: boolean | undefined;
binding(m: "constants"): {
os: typeof import("node:os").constants;