lml-main
Version:
This is now a mono repository published into many standalone packages.
11 lines (10 loc) • 611 B
TypeScript
import { Dispatch } from 'redux';
import { AppState } from '../../common/reducers';
export declare const UPDATE_FREQUENCY_AUTO_ALLOCATION_BATCH = "UPDATE_FREQUENCY_AUTO_ALLOCATION_BATCH";
export interface UpdateFrequencyAutoAllocationBatchAction {
type: 'UPDATE_FREQUENCY_AUTO_ALLOCATION_BATCH';
setFrequencyAutoOn: string[];
setFrequencyAutoOff: string[];
}
export declare const showFrequenciesSelectModal: () => (dispatch: (action: any) => void, getState: () => AppState) => void;
export declare const updateFrequenciesFromModal: () => (dispatch: Dispatch<any>, getState: () => AppState) => void;