xxxxxxxxxx
Not possible. If anything, you can create an array and create the type afterwards, from that array
xxxxxxxxxx
export const markets = ['au', 'br', 'de'] as const;
export type Market = typeof markets[number];
markets.forEach((market: Market) => {
console.log(market);
});