diff options
author | 2023-09-14 00:39:36 -0400 | |
---|---|---|
committer | 2023-09-13 21:39:36 -0700 | |
commit | 9976e3f528bae74667a2f4742c4b165b7f68c76d (patch) | |
tree | eb4a123f5c533f73559f894bff77d5db65906a56 /src/js/builtins.d.ts | |
parent | fbafbd3394a2c1a1112df148fa2b151ee0955cc5 (diff) | |
download | bun-9976e3f528bae74667a2f4742c4b165b7f68c76d.tar.gz bun-9976e3f528bae74667a2f4742c4b165b7f68c76d.tar.zst bun-9976e3f528bae74667a2f4742c4b165b7f68c76d.zip |
fix(runtime): make most globals configurable/deletable, allow resuming the console iterator (#5216)
* Fix #5177
* Fix #5175
* make most globals deletable/overridable
* not done
* cool
* a
* done
* fix test
* oops
* yippee
Diffstat (limited to 'src/js/builtins.d.ts')
-rw-r--r-- | src/js/builtins.d.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/js/builtins.d.ts b/src/js/builtins.d.ts index 70d76e5a0..8d3e7df11 100644 --- a/src/js/builtins.d.ts +++ b/src/js/builtins.d.ts @@ -315,8 +315,6 @@ declare function $isPaused(): TODO; declare function $isWindows(): TODO; declare function $join(): TODO; declare function $kind(): TODO; -declare function $lazy(): TODO; -declare function $lazyLoad(): TODO; declare function $lazyStreamPrototypeMap(): TODO; declare function $loadModule(): TODO; declare function $localStreams(): TODO; |