UNPKG

@evolvejs/core

Version:

An advanced Discord API wrapper with TS and JS support

17 lines (16 loc) 446 B
import { Guild, User, IInvite, EvolveClient } from "../.."; import { Channel } from "../Channel/Channel"; export declare class Invite { code: string; guild: Guild; channel: Channel; inviter: User; targetUser: User; targetUserType?: number; approxPresenceCount?: number; approxMemberCount?: number; private client; data: IInvite; constructor(data: IInvite, client: EvolveClient); private _handle; }