1
1
mirror of https://github.com/Burn-E99/TheArtificer.git synced 2026-06-04 09:03:50 -04:00

remove mod.d.ts since all types have been relocated now

This commit is contained in:
Ean Milligan
2025-05-03 20:53:17 -04:00
parent f2797e6c33
commit 3e6844ed10
6 changed files with 17 additions and 20 deletions

View File

@@ -6,9 +6,16 @@ import config from '~config';
import dbClient from 'db/client.ts';
import { queries } from 'db/common.ts';
import { EmojiConf } from 'src/mod.d.ts';
import utils from 'src/utils.ts';
interface EmojiConf {
name: string;
aliases: string[];
id: string;
animated: boolean;
deleteSender: boolean;
}
const allEmojiAliases: string[] = [];
config.emojis.forEach((curEmoji: EmojiConf) => {