UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

19 lines (18 loc) 1.26 kB
import { AppState } from '../../common/reducers'; import { FrequencyServiceCentre, Frequency } from '../../frequencies/data'; import { FrequencyRegionModel } from '../../frequencies/data/frequency-region'; export declare const getFrequencies: (state: AppState) => { [refId: string]: Frequency; }; export declare const autoAllocationGlobal: (state: AppState) => boolean; export declare const getRegions: (state: AppState) => FrequencyRegionModel[]; export declare const getRegionByName: (state: AppState, name: string) => FrequencyRegionModel; export declare const getServiceCentreByCode: (state: AppState, code: string) => FrequencyServiceCentre; export declare const getFrequencyByLabel: (state: AppState, label: string) => Frequency; export declare const getFrequencyCounterpartByLabel: (state: AppState, label: string) => Frequency; export declare const getServiceCentresByRegionName: (state: AppState, name: string) => FrequencyServiceCentre[]; export declare const getFrequenciesByServiceCentreCode: (state: AppState, id: string) => Frequency[]; export declare const getFrequencyIdCounterpartId: (state: AppState, frequencyId: string) => string; export declare const getFrequenciesWithAutoOn: (state: AppState) => { [frequencyId: string]: boolean; };