swc/crates/swc_bundler/tests/.cache/deno/f157729b84cc262181cdd85be7a27496d11ddf4f.ts
2021-11-09 20:42:49 +09:00

13 lines
347 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/guilds/guild_role_update.ts
import { Role } from "../permissions/role.ts";
/** https://discord.com/developers/docs/topics/gateway#guild-role-update */
export interface GuildRoleUpdate {
/** The id of the guild */
guildId: string;
/** The role updated */
role: Role;
}