From 5621a42dfaba14a4f758bd618ee3cd471ebf929c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Mon, 29 May 2023 22:31:30 +0200 Subject: [PATCH] fix: use import instead namespace access --- packages/bun-types/globals.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bun-types/globals.d.ts b/packages/bun-types/globals.d.ts index 47ccb85e79..f993781011 100644 --- a/packages/bun-types/globals.d.ts +++ b/packages/bun-types/globals.d.ts @@ -367,7 +367,7 @@ interface Process { platform: Platform; argv: string[]; execArgv: string[]; - env: Bun.Env; + env: import("bun").Env; /** Whether you are using Bun */ isBun: 1; // FIXME: this should actually return a boolean