deleteStickerSet()
Use this method to delete a sticker set that was created by the bot. Returns True on success.
parameters
| parameter | type | required | description |
|---|---|---|---|
name | string | required | Sticker set name |
returns
boolean
usage in yaebal
not (yet) hard-typed on Api — call it through the generic .call<T>() escape hatch documented in @yaebal/types.
import type { DeleteStickerSetParams } from "@yaebal/types";
await bot.api.call<boolean>("deleteStickerSet", {
name: "...",
} satisfies DeleteStickerSetParams);official Bot API docs: https://core.telegram.org/bots/api/#deletestickerset