Updated Event Types

This commit is contained in:
Ahmad 2025-03-01 00:32:51 -05:00
parent 3762e554b4
commit e59415ac62
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
7 changed files with 54 additions and 24 deletions

View file

@ -2,6 +2,7 @@ import { Client, Events } from 'discord.js';
import { setMembers } from '../db/db.js';
import { loadConfig } from '../util/configLoader.js';
import { Event } from '../types/EventTypes.js';
export default {
name: Events.ClientReady,
@ -16,4 +17,4 @@ export default {
console.log(`Ready! Logged in as ${client.user?.tag}`);
},
};
} as Event<typeof Events.ClientReady>;