getStickerSet()
Use this method to get a sticker set. On success, a StickerSet object is returned.
parameters
| parameter | type | required | description |
|---|---|---|---|
name | string | required | Name of the sticker set |
returns
usage in yaebal
getStickerSet is directly typed on Api — call it straight off bot.api.
import type { GetStickerSetParams } from "@yaebal/types";
await bot.api.getStickerSet({
name: "...",
} satisfies GetStickerSetParams);official Bot API docs: https://core.telegram.org/bots/api/#getstickerset