fix mod.ts export (#2121)

Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com>
This commit is contained in:
LTS20050703
2022-03-22 22:28:33 +07:00
committed by GitHub
parent 6bda23296b
commit 086258d1ea
59 changed files with 285 additions and 293 deletions
@@ -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;
}
+12
View File
@@ -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";