mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-15 19:08:17 +00:00
8 lines
301 B
TypeScript
8 lines
301 B
TypeScript
import { Bot } from "../../bot.ts";
|
|
import { DiscordGatewayPayload } from "../../types/gateway/gatewayPayload.ts";
|
|
|
|
export async function handleThreadMemberUpdate(bot: Bot, data: DiscordGatewayPayload) {
|
|
// This event is documented for completeness, but unlikely to be used by most bots
|
|
return;
|
|
}
|