function getGuildSplashURLimport { getGuildSplashURL } from "https://deno.land/x/discordeno@17.0.0/helpers/guilds/mod.ts"; getGuildSplashURL(bot: Bot,guildId: BigString,imageHash: BigString | undefined,options?: { size?: ImageSize; format?: ImageFormat; },): string | undefinedBuilds the URL to a guild splash 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 splash of. imageHash: BigString | undefined The hash identifying the splash image. optionaloptions: { size?: ImageSize; format?: ImageFormat; } The parameters for the building of the URL. Returnsstring | undefinedThe link to the resource or undefined if the guild does not have a splash image set.