@coveo/headless
    Preparing search index...

    Interface StaticFilterSetActionCreators

    The static filter set action creators.

    See Dispatch actions.

    interface StaticFilterSetActionCreators {
        deselectAllStaticFilterValues(
            id: string,
        ): { payload: string; type: string };
        registerStaticFilter(
            payload: RegisterStaticFilterActionCreatorPayload,
        ): { payload: RegisterStaticFilterActionCreatorPayload; type: string };
        toggleExcludeStaticFilterValue(
            payload: ToggleSelectStaticFilterValueActionCreatorPayload,
        ): {
            payload: ToggleSelectStaticFilterValueActionCreatorPayload;
            type: string;
        };
        toggleSelectStaticFilterValue(
            payload: ToggleSelectStaticFilterValueActionCreatorPayload,
        ): {
            payload: ToggleSelectStaticFilterValueActionCreatorPayload;
            type: string;
        };
    }
    Index

    Methods