[common/hc] emojiBlacklist: make it configurable

This commit is contained in:
Alyxia Sother 2023-07-06 18:56:25 +02:00
parent f053b3a096
commit 9d46c17057
No known key found for this signature in database
GPG Key ID: 0B2497099595CAA5
2 changed files with 3 additions and 0 deletions

View File

@ -3,5 +3,8 @@ export {};
declare global {
const hh: {
constants: Record<string, string> & { categories: Record<string, string> };
// TODO: Maybe turn this into something that, based on the moduleName, can
// fetch an ext's actual config type and return that instead.
getModuleOptions: (moduleName: string) => Record<string, any>;
};
}