mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-16 03:18:17 +00:00
fix mod.ts export (#2121)
Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com>
This commit is contained in:
@@ -1,7 +0,0 @@
|
||||
import { Bot } from "../../bot.ts";
|
||||
import { DiscordGatewayPayload } from "../../types/discord.ts";
|
||||
|
||||
export async function handleThreadMemberUpdate(bot: Bot, data: DiscordGatewayPayload) {
|
||||
// This event is documented for completeness, but unlikely to be used by most bots
|
||||
return;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
export * from "./CHANNEL_CREATE.ts";
|
||||
export * from "./CHANNEL_DELETE.ts";
|
||||
export * from "./CHANNEL_PINS_UPDATE.ts";
|
||||
export * from "./CHANNEL_UPDATE.ts";
|
||||
export * from "./STAGE_INSTANCE_CREATE.ts";
|
||||
export * from "./STAGE_INSTANCE_DELETE.ts";
|
||||
export * from "./STAGE_INSTANCE_UPDATE.ts";
|
||||
export * from "./THREAD_CREATE.ts";
|
||||
export * from "./THREAD_DELETE.ts";
|
||||
export * from "./THREAD_LIST_SYNC.ts";
|
||||
export * from "./THREAD_MEMBERS_UPDATE.ts";
|
||||
export * from "./THREAD_UPDATE.ts";
|
||||
Reference in New Issue
Block a user