Interface PipelineActionCreators

The pipeline action creators.

interface PipelineActionCreators {
    setPipeline(pipeline: string): {
        payload: string;
        type: string;
    };
}

Methods

Methods

  • Sets the query pipeline.

    Parameters

    • pipeline: string

      The query pipeline to set (may be empty).

    Returns {
        payload: string;
        type: string;
    }

    A dispatchable action.

    • payload: string
    • type: string