import Socks5HttpsAgent from 'socks5-https-client/lib/Agent'
const bot = new TelegramBot(telegramBotToken, {
request: {
agentClass: Socks5HttpsAgent,
agentOptions: {
socksHost: hostname,
socksPort: port,
socksUsername: username,
socksPassword: password,
},
},
})