Skip to content

Commit

Permalink
chore: make requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
suneettipirneni committed Oct 14, 2022
1 parent f8c3dc3 commit 55f1ab4
Showing 1 changed file with 43 additions and 43 deletions.
86 changes: 43 additions & 43 deletions packages/core/src/emitter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,50 +2,50 @@ import type { REST } from '@discordjs/rest';
import type { WebSocketManager } from '@discordjs/ws';
import { WebSocketShardEvents } from '@discordjs/ws';
import { AsyncEventEmitter } from '@vladfrangu/async_event_emitter';
import type {
GatewayDispatchPayload,
APIChannel,
APIEmoji,
APIGuild,
APIGuildScheduledEvent,
APIInteraction,
APIMessage,
APIStageInstance,
APIThreadChannel,
APIUnavailableGuild,
APIUser,
GatewayChannelPinsUpdateDispatchData,
GatewayGuildCreateDispatchData,
GatewayGuildMemberAddDispatchData,
GatewayGuildMembersChunkDispatchData,
GatewayGuildMemberUpdateDispatchData,
GatewayGuildRoleDeleteDispatchData,
GatewayGuildRoleModifyDispatchData,
GatewayGuildScheduledEventUserAddDispatchData,
GatewayGuildScheduledEventUserRemoveDispatchData,
GatewayGuildStickersUpdateDispatchData,
GatewayIntegrationCreateDispatchData,
GatewayIntegrationDeleteDispatchData,
GatewayIntegrationUpdateDispatchData,
GatewayInviteCreateDispatchData,
GatewayInviteDeleteDispatchData,
GatewayMessageDeleteBulkDispatchData,
GatewayMessageDeleteDispatchData,
GatewayMessageReactionAddDispatchData,
GatewayMessageReactionRemoveAllDispatchData,
GatewayMessageReactionRemoveDispatchData,
GatewayMessageReactionRemoveEmojiDispatchData,
GatewayMessageUpdateDispatchData,
GatewayPresenceUpdate,
GatewayReadyDispatchData,
GatewayThreadListSync,
GatewayThreadMembersUpdateDispatchData,
GatewayThreadMemberUpdateDispatchData,
GatewayVoiceServerUpdateDispatchData,
GatewayVoiceState,
GatewayWebhooksUpdateDispatchData,
import {
GatewayDispatchEvents,
type GatewayDispatchPayload,
type APIChannel,
type APIEmoji,
type APIGuild,
type APIGuildScheduledEvent,
type APIInteraction,
type APIMessage,
type APIStageInstance,
type APIThreadChannel,
type APIUnavailableGuild,
type APIUser,
type GatewayChannelPinsUpdateDispatchData,
type GatewayGuildCreateDispatchData,
type GatewayGuildMemberAddDispatchData,
type GatewayGuildMembersChunkDispatchData,
type GatewayGuildMemberUpdateDispatchData,
type GatewayGuildRoleDeleteDispatchData,
type GatewayGuildRoleModifyDispatchData,
type GatewayGuildScheduledEventUserAddDispatchData,
type GatewayGuildScheduledEventUserRemoveDispatchData,
type GatewayGuildStickersUpdateDispatchData,
type GatewayIntegrationCreateDispatchData,
type GatewayIntegrationDeleteDispatchData,
type GatewayIntegrationUpdateDispatchData,
type GatewayInviteCreateDispatchData,
type GatewayInviteDeleteDispatchData,
type GatewayMessageDeleteBulkDispatchData,
type GatewayMessageDeleteDispatchData,
type GatewayMessageReactionAddDispatchData,
type GatewayMessageReactionRemoveAllDispatchData,
type GatewayMessageReactionRemoveDispatchData,
type GatewayMessageReactionRemoveEmojiDispatchData,
type GatewayMessageUpdateDispatchData,
type GatewayPresenceUpdate,
type GatewayReadyDispatchData,
type GatewayThreadListSync,
type GatewayThreadMembersUpdateDispatchData,
type GatewayThreadMemberUpdateDispatchData,
type GatewayVoiceServerUpdateDispatchData,
type GatewayVoiceState,
type GatewayWebhooksUpdateDispatchData,
} from 'discord-api-types/v10';
import { GatewayDispatchEvents } from 'discord-api-types/v10';
import { API } from './api/index.js';

export interface IntrinsicProps {
Expand Down

0 comments on commit 55f1ab4

Please sign in to comment.