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
not (yet) hard-typed on Api — call it through the generic .call<T>() escape hatch documented in @yaebal/types.
import type { GetStickerSetParams, StickerSet } from "@yaebal/types";
await bot.api.call<StickerSet>("getStickerSet", {
name: "...",
} satisfies GetStickerSetParams);official Bot API docs: https://core.telegram.org/bots/api/#getstickerset