UNPKG
@evolvejs/core
Version:
latest (0.3.2-alpha)
0.3.2-alpha
An advanced Discord API wrapper with TS and JS support
evolve.js.org
EvolveJS/EvolveJS
@evolvejs/core
/
dist
/
Client
/
Events
/
GuildIntegrationEvents.d.ts
8 lines
(7 loc)
•
295 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
BaseEvent
}
from
"./BaseEvent"
;
import
{
EvolveClient
}
from
"../EvolveClient"
;
import
{
Guild
}
from
"../../Structures/Guild/Guild"
;
export
declare
class
GuildIntegrationEvents
extends
BaseEvent
{
guild
:
Guild
;
constructor
(
client
:
EvolveClient
,
guild
:
Guild
,
shard
:
number
); }