Interface StandaloneSearchBoxSetActionCreators

The commerce standalone search box set action creators.

interface StandaloneSearchBoxSetActionCreators {
    fetchRedirectUrl(payload: FetchRedirectUrlPayload): AsyncThunkAction<string, FetchRedirectUrlPayload, AsyncThunkCommerceOptions<StateNeededForRedirect>>;
    registerStandaloneSearchBox(payload: RegisterStandaloneSearchBoxPayload): {
        payload: RegisterStandaloneSearchBoxPayload;
        type: string;
    };
    resetStandaloneSearchBox(payload: ResetStandaloneSearchBoxPayload): {
        payload: ResetStandaloneSearchBoxPayload;
        type: string;
    };
    updateStandaloneSearchBoxRedirectionUrl(payload: RegisterStandaloneSearchBoxPayload): {
        payload: RegisterStandaloneSearchBoxPayload;
        type: string;
    };
}

Methods