package dev.inmo.tgbotapi.extensions.api.chat.stickers import com.github.insanusmokrassar.TelegramBotAPI.bot.TelegramBot import com.github.insanusmokrassar.TelegramBotAPI.requests.chat.stickers.DeleteChatStickerSet import com.github.insanusmokrassar.TelegramBotAPI.types.ChatIdentifier import com.github.insanusmokrassar.TelegramBotAPI.types.chat.abstracts.SupergroupChat suspend fun TelegramBot.deleteChatStickerSet( chatId: ChatIdentifier ) = execute(DeleteChatStickerSet(chatId)) suspend fun TelegramBot.deleteChatStickerSet( chat: SupergroupChat ) = deleteChatStickerSet(chat.id)