import { TelegramClient } from '../../client' import { tl } from '@mtcute/tl' import { StickerSet } from '../../types' /** * Get a sticker pack and stickers inside of it. * * @param id Sticker pack short name, dice emoji, `"emoji"` for animated emojis or input ID * @internal */ export async function getStickerSet( this: TelegramClient, id: string | { dice: string } | tl.TypeInputStickerSet ): Promise { let input: tl.TypeInputStickerSet if (typeof id === 'string') { input = id === 'emoji' ? { _: 'inputStickerSetAnimatedEmoji' } : { _: 'inputStickerSetShortName', shortName: id } } else if ('dice' in id) { input = { _: 'inputStickerSetDice', emoticon: id.dice } } else { input = id } const res = await this.call({ _: 'messages.getStickerSet', stickerset: input }) return new StickerSet(this, res) }