interface FinishedOptions {
    signal?: AbortSignal;
    error?: boolean;
    readable?: boolean;
    writable?: boolean;
}

Hierarchy (view full)

Properties

signal?: AbortSignal

When provided the corresponding AbortController can be used to cancel an asynchronous action.

error?: boolean
readable?: boolean
writable?: boolean