import type { Region } from '../interfaces/index.js'; export const Regions = { '1': { name: 'North America', shortName: 'NA' }, '4': { name: 'Europe', shortName: 'EU' }, '5': { name: 'Oceania / Australia', shortName: 'AUS' } } as { [key: string]: Region };