Fix Event document

This commit is contained in:
March 7th 2022-04-25 23:10:20 +07:00
parent edf36991a9
commit 6e5e4a35fd
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
# Discord.js Selfbot v13
- Install: <strong>```npm i discord.js-selfbot-v13@latest```</strong>
# Document is available
I made it pretty sketchy, but you can see it in the Wiki tab
# <strong>[Risky actions](https://github.com/Merubokkusu/Discord-S.C.U.M/issues/66)</strong>
# Quick links

4
typings/index.d.ts vendored
View File

@ -4163,8 +4163,8 @@ export interface ClientEvents extends BaseClientEvents {
guildScheduledEventDelete: [guildScheduledEvent: GuildScheduledEvent];
guildScheduledEventUserAdd: [guildScheduledEvent: GuildScheduledEvent, user: User];
guildScheduledEventUserRemove: [guildScheduledEvent: GuildScheduledEvent, user: User];
relationshipAdd: [id: Snowflake, type: RelationshipTypes, user: User];
relationshipRemove: [id: Snowflake, type: RelationshipTypes, user: User];
relationshipAdd: [id: Snowflake, type: RelationshipTypes];
relationshipRemove: [id: Snowflake];
unhandledPacket: [packet: { op: GatewayOpcodes | number; d?: any; s?: number; t?: string }, shard: WebSocketShard];
}