UNPKG

@evolvejs/core

Version:

An advanced Discord API wrapper with TS and JS support

10 lines (9 loc) 392 B
import { BaseEvent } from "./BaseEvent"; import { EvolveClient } from "../EvolveClient"; import { Role } from "../../Structures/Guild/Role"; import { Guild } from "../../Structures/Guild/Guild"; export declare class GuildRoleEvents extends BaseEvent { role: Role | undefined; guild: Guild; constructor(client: EvolveClient, role: Role | undefined, guild: Guild, shard: number); }