From bd0bf663b29485d35dc632181944f91e944fd873 Mon Sep 17 00:00:00 2001 From: Alec Larson <1925840+aleclarson@users.noreply.github.com> Date: Sat, 9 Nov 2024 17:36:46 -0500 Subject: [PATCH] fix(types): export `PromiseWithResolvers` type --- src/async/withResolvers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/async/withResolvers.ts b/src/async/withResolvers.ts index 41caf2b2..6c5f576e 100644 --- a/src/async/withResolvers.ts +++ b/src/async/withResolvers.ts @@ -1,4 +1,4 @@ -interface PromiseWithResolvers { +export interface PromiseWithResolvers { promise: Promise resolve: (value: T | PromiseLike) => void reject: (reason?: any) => void