AbortablePromiseBuilder type
Represents a function that returns a promise that can be aborted.
type AbortablePromiseBuilder<T> = (abortOptions: {
abortSignal?: AbortSignalLike
}) => Promise<T>
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Represents a function that returns a promise that can be aborted.
type AbortablePromiseBuilder<T> = (abortOptions: {
abortSignal?: AbortSignalLike
}) => Promise<T>