lml-main
Version:
This is now a mono repository published into many standalone packages.
11 lines (10 loc) • 648 B
TypeScript
import { RxHttpRequestAction, RxHttpActionTypes } from 'redux-rx-http';
export declare const POST_AUTO_ALLOCATION_GLOBAL: RxHttpActionTypes;
export declare const SET_AUTO_ALLOCATION_GLOBAL = "SET_AUTO_ALLOCATION_GLOBAL";
export interface SetAutoAllocationGlobalAction {
type: 'SET_AUTO_ALLOCATION_GLOBAL';
autoAllocationGlobal: boolean;
}
export declare type AutoAllocationAction = SetAutoAllocationGlobalAction;
export declare const postAutoAllocationGlobal: (autoAllocationGlobal: boolean, args?: any) => RxHttpRequestAction;
export declare const setAutoAllocationGlobal: (autoAllocationGlobal: boolean) => SetAutoAllocationGlobalAction;