type UrlKeys = 'api' | 'initCheck' | 'optIn' | 'optOut' | 'wb' | 'betJackpot' | 'betWinnerJackpot' type Urls = { [key in UrlKeys]: string; } const urls: Urls = { api: 'https://jackpot.jooba.tech', initCheck: '/jackpot/v1/exists', optIn: '/jackpot/v1/optin', optOut: '/jackpot/v1/optin', wb: '/wsjackpot/', betJackpot: '/jackpot/v1/event', betWinnerJackpot: '/jackpot/v1/event/supersecret' } function setUrl(key: UrlKeys, value: string) { urls[key] = value } export { setUrl } export default urls