Type alias WrappedAction<TParams, TOk, TErr>

WrappedAction<TParams extends any[], TOk, TErr extends Error>: Action<TParams, TOk, TErr> & {
    processing: Ref<boolean>;
}

Type Parameters

  • TParams extends any[]
  • TOk
  • TErr extends Error

Type declaration

  • processing: Ref<boolean>

    Tracks whether the action is executing