swc/crates/swc_bundler/tests/.cache/deno/06bc18457d3941be8672f05312cd12e11aab6884.ts

13 lines
317 B
TypeScript
Raw Normal View History

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/guilds/ban.ts
import { User } from "../users/user.ts";
/** https://discord.com/developers/docs/resources/guild#ban-object */
export interface Ban {
/** The reason for the ban */
reason: string | null;
/** The banned user */
user: User;
}