diff options
Diffstat (limited to 'src/js/private.d.ts')
-rw-r--r-- | src/js/private.d.ts | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/js/private.d.ts b/src/js/private.d.ts index 0e99e2a5b..c5b9ab03d 100644 --- a/src/js/private.d.ts +++ b/src/js/private.d.ts @@ -160,17 +160,6 @@ declare interface Error { function $lazy<T extends keyof BunLazyModules>(id: T): BunLazyModules[T]; interface BunLazyModules { - /** - * Primordials is a dynamic object that contains builtin functions and values. - * - * like primordials.isPromise -> $isPromise, etc - * Also primordials.Bun -> $Bun, etc; untampered globals - * - * The implmentation of this is done using createBuiltin('(function (){ return @<name here>; })') - * Meaning you can crash bun if you try returning something like `getInternalField` - */ - primordials: any; - "bun:jsc": Omit<typeof import("bun:jsc"), "jscDescribe" | "jscDescribeArray"> & { describe: typeof import("bun:jsc").jscDescribe; describeArray: typeof import("bun:jsc").jscDescribe; |