deleteStickerFromSet()
Use this method to delete a sticker from a set created by the bot. Returns True on success.
parameters
| parameter | type | required | description |
|---|---|---|---|
sticker | string | required | File identifier of the sticker |
returns
boolean
usage in yaebal
deleteStickerFromSet is directly typed on Api — call it straight off bot.api.
import type { DeleteStickerFromSetParams } from "@yaebal/types";
await bot.api.deleteStickerFromSet({
sticker: "...",
} satisfies DeleteStickerFromSetParams);official Bot API docs: https://core.telegram.org/bots/api/#deletestickerfromset