The number of milliseconds to wait before timing out
A single Promise or array of Promises to wait for
Optional
options: { signal?: AbortSignal; timeoutError?: string }Configuration options
Optional
signal?: AbortSignalOptional AbortSignal to cancel the timeout
Optional
timeoutError?: stringCustom error message for timeout
A Promise that resolves with the result of the input promise(s)
// Single promise with 5 second timeout
const result = await promiseWithTimeout(5000, fetchData());
// Multiple promises with custom error message
const results = await promiseWithTimeout(
10000,
[fetchData1(), fetchData2()],
{ timeoutError: "Failed to fetch data in time" }
);
// With abort signal
const controller = new AbortController();
const result = await promiseWithTimeout(5000, fetchData(), {
signal: controller.signal
});
// Later: controller.abort();
Returns a promise that resolves successfully if completed before the given timeout, otherwise rejects with a TimeoutError