3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-27 19:25:03 +00:00
zeppelin/backend/src/utils/isDmChannel.ts
2023-03-11 19:31:36 +00:00

5 lines
157 B
TypeScript

import type { Channel, DMChannel } from "discord.js";
export function isDmChannel(channel: Channel): channel is DMChannel {
return channel.isDMBased();
}