function getGuildBannerURLimport { getGuildBannerURL } from "https://deno.land/x/discordeno@17.0.0/helpers/guilds/mod.ts"; getGuildBannerURL(bot: Bot,guildId: BigString,options: { banner?: string | bigint; size?: ImageSize; format?: ImageFormat; },): string | undefinedBuilds a URL to the guild banner stored in the Discord CDN. Parametersbot: Bot The bot instance to use to build the URL. guildId: BigString The ID of the guild to get the link to the banner for. options: { banner?: string | bigint; size?: ImageSize; format?: ImageFormat; } The parameters for the building of the URL. Returnsstring | undefinedThe link to the resource or undefined if no banner has been set.