import { Collection, Dictionary } from '@freearhey/core' import type { Category, Channel, City, Country, Feed, Language, Region, Subdivision, Timezone, BlocklistRecord, Guide, Logo, Stream } from './models' export default { blocklistRecordsGroupedByChannel: new Dictionary(), categoriesKeyById: new Dictionary(), channelsGroupedByCountry: new Dictionary(), channelsKeyById: new Dictionary(), citiesKeyByCode: new Dictionary(), countriesKeyByCode: new Dictionary(), feedsGroupedByChannel: new Dictionary(), feedsKeyByStreamId: new Dictionary(), guidesGroupedByChannel: new Dictionary(), guidesGroupedByStreamId: new Dictionary(), languagesKeyByCode: new Dictionary(), logosGroupedByChannel: new Dictionary(), logosGroupedByStreamId: new Dictionary(), regionsKeyByCode: new Dictionary(), streamsGroupedByChannel: new Dictionary(), streamsGroupedById: new Dictionary(), subdivisionsKeyByCode: new Dictionary(), timezonesKeyById: new Dictionary(), cities: new Collection(), regions: new Collection(), subdivisions: new Collection() }