mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-04-25 17:14:57 +02:00
14 lines
275 B
TypeScript
14 lines
275 B
TypeScript
export type ForecastMacroRegionId =
|
|
| 'mena'
|
|
| 'east-asia'
|
|
| 'europe'
|
|
| 'north-america'
|
|
| 'south-asia'
|
|
| 'latam'
|
|
| 'sub-saharan-africa'
|
|
| 'global';
|
|
|
|
export function getForecastMacroRegion(
|
|
region: string | null | undefined,
|
|
): ForecastMacroRegionId | null;
|