swc/bundler/tests/.cache/deno/c515d79766d4c6d1de691f316a46c777167e195e.ts
강동윤 d60c3242af
fix(swc): Fix bugs (#1739)
swc_bundler:
 - Fix cycle detection for complex circular imports. (denoland/deno#10752)

swc_ecma_transforms_typescript:
 - Allow using large values for an enum variant.
2021-05-25 14:30:17 +09:00

19 lines
794 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/members/request_guild_members.ts
/** https://discord.com/developers/docs/topics/gateway#request-guild-members */
export interface RequestGuildMembers {
/** id of the guild to get members for */
guildId: string;
/** String that username starts with, or an empty string to return all members */
query?: string;
/** Maximum number of members to send matching the query; a limit of 0 can be used with an empty string query to return all members */
limit: number;
/** Used to specify if we want the presences of the matched members */
presences?: boolean;
/** Used to specify which users you wish to fetch */
userIds?: bigint[];
/** Nonce to identify the Guild Members Chunk response */
nonce?: string;
}