mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-27 19:25:03 +00:00
5 lines
157 B
TypeScript
5 lines
157 B
TypeScript
import type { Channel, DMChannel } from "discord.js";
|
|
|
|
export function isDmChannel(channel: Channel): channel is DMChannel {
|
|
return channel.isDMBased();
|
|
}
|