function getAvatarURLimport { getAvatarURL } from "https://deno.land/x/discordeno@17.0.1/helpers/mod.ts"; getAvatarURL(bot: Bot,userId: BigString,discriminator: string,options?: { avatar: BigString | undefined; size?: ImageSize; format?: ImageFormat; },): stringBuilds a URL to a user's avatar stored in the Discord CDN. Parametersbot: Bot The bot instance to use to build the URL. userId: BigString The ID of the user to get the avatar of. discriminator: string The user's discriminator. (4-digit tag after the hashtag.) optionaloptions: { avatar: BigString | undefined; size?: ImageSize; format?: ImageFormat; } The parameters for the building of the URL. ReturnsstringThe link to the resource.