Type Alias FutureUnion<T>

FutureUnion<T>:
    | FutureLoading<T>
    | FutureError<T>
    | FutureValue<T>
    | FutureEmpty

Type Parameters

  • T