summaryrefslogtreecommitdiff
path: root/core/internal.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'core/internal.d.ts')
-rw-r--r--core/internal.d.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/internal.d.ts b/core/internal.d.ts
index a91ac6244..e34cfbe71 100644
--- a/core/internal.d.ts
+++ b/core/internal.d.ts
@@ -75,6 +75,10 @@ declare namespace __bootstrap {
typeof globalThis.FinalizationRegistry;
export const SafeWeakRef: typeof globalThis.WeakRef;
export const SafePromiseAll: typeof Promise.all;
+ // NOTE: Uncomment the following functions when you need to use them
+ // export const SafePromiseAllSettled: typeof Promise.allSettled;
+ // export const SafePromiseAny: typeof Promise.any;
+ // export const SafePromiseRace: typeof Promise.race;
export const SafePromisePrototypeFinally: UncurryThis<
Promise.prototype.finally
>;