Control signals for cancelling uncached manga processing.

export interface UncachedMangaControl {
/** Abort signal for early termination. */
abortSignal?: AbortSignal;
/** Cancellation check function. */
checkCancellation: () => void;
}
interface UncachedMangaControl {
    abortSignal?: AbortSignal;
    checkCancellation: () => void;
}

Properties

abortSignal?: AbortSignal

Abort signal for early termination.

checkCancellation: () => void

Cancellation check function.