Contains partial response data for an operation that was promise rejected.

Some operations can return valid, partial data despite having errors occur that an application may which to treat as non-fatal.

interface ErrorUserInfoPartialResult {
    partialResult?: any;
}

Hierarchy (view full)

Properties

Properties

partialResult?: any

Holds the response that would have been returned had an error not occurred but in an incomplete or partial state. The format is identical to the promised value of the original request.