🎨 fix imports with new build script

This commit is contained in:
Flam3rboy
2021-10-09 01:45:02 +02:00
parent d842478d06
commit 9fa4c607fc
15 changed files with 43 additions and 42 deletions
@@ -22,7 +22,7 @@ const router: Router = Router();
export default router;
export function isTextChannel(type: ChannelType): boolean {
function isTextChannel(type: ChannelType): boolean {
switch (type) {
case ChannelType.GUILD_STORE:
case ChannelType.GUILD_VOICE:
@@ -39,6 +39,7 @@ export function isTextChannel(type: ChannelType): boolean {
return true;
}
}
module.exports.isTextChannel = isTextChannel;
export interface MessageCreateSchema {
content?: string;