Interface AsyncActionCreators<Params, Result, Error>

interface AsyncActionCreators<Params, Result, Error> {
    done: ActionCreator<Success<Params, Result>>;
    failed: ActionCreator<Failure<Params, Error>>;
    started: ActionCreator<Params>;
    type: string;
}

Type Parameters

  • Params
  • Result
  • Error = {}

Properties

Properties

type: string