function searchMembersimport { searchMembers } from "https://dotland.deno.dev/x/discordeno@18.0.1/plugins/helpers/deps.ts"; searchMembers(bot: Bot,guildId: BigString,query: string,options?: Omit<SearchMembers, "query">,): Promise<Collection<bigint, Member>>Gets the list of members whose usernames or nicknames start with a provided string. Parametersbot: Bot The bot instance to use to make the request. guildId: BigString The ID of the guild to search in. query: string The string to match usernames or nicknames against. optionaloptions: Omit<SearchMembers, "query"> The parameters for searching through the members. ReturnsPromise<Collection<bigint, Member>>A collection of Member objects assorted by user ID.