Partial state of API Result.

interface APIPartial<T, S> {
    cause: Error;
    result: Omit<T, keyof S>;
    status: Partial;
}

Type Parameters

  • T
  • S

Properties

Properties

cause: Error

Cause of the error to return the partial result.

result: Omit<T, keyof S>

Result of the API.

status: Partial

Partial status.