aboutsummaryrefslogtreecommitdiff
path: root/src/js/private.d.ts
diff options
context:
space:
mode:
authorGravatar dave caruso <me@paperdave.net> 2023-10-02 15:24:38 -0700
committerGravatar dave caruso <me@paperdave.net> 2023-10-02 15:24:38 -0700
commit0160772d25105f302f84013e892fe07f9eeb6f91 (patch)
treeae69b9edf6bdbfeab84055e5fd4f93be5b46dbbd /src/js/private.d.ts
parentabbe3916ed5d7b6adb5a4b376e5c563d36e07d31 (diff)
downloadbun-dave/nodemodule-preloadmodules.tar.gz
bun-dave/nodemodule-preloadmodules.tar.zst
bun-dave/nodemodule-preloadmodules.zip
Diffstat (limited to 'src/js/private.d.ts')
-rw-r--r--src/js/private.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/private.d.ts b/src/js/private.d.ts
index 77f4d5536..2ca8d630f 100644
--- a/src/js/private.d.ts
+++ b/src/js/private.d.ts
@@ -215,7 +215,7 @@ interface BunLazyModules {
declare var $exports: any;
interface CommonJSModuleRecord {
- $require(id: string, mod: any): any;
+ $require(this: CommonJSModuleRecord, id: string, parent: string | undefined): any;
children: CommonJSModuleRecord[];
exports: any;
id: string;