Interface StaticFilterSetActionCreators

The static filter set action creators.

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;
    };
}

Methods