UNPKG

@evolvejs/core

Version:

An advanced Discord API wrapper with TS and JS support

10 lines (9 loc) 366 B
import { BaseEvent } from "./BaseEvent"; import { User } from "../../Structures/User/User"; import { Guild } from "../../Structures/Guild/Guild"; import { EvolveClient } from "../EvolveClient"; export declare class GuildBanEvents extends BaseEvent { user: User; guild: Guild; constructor(client: EvolveClient, user: User, guild: Guild, shard: number); }