function getAvatarURLimport { getAvatarURL } from "https://dotland.deno.dev/x/discordeno@18.0.1/plugins/helpers/deps.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.