mirror of
https://github.com/hexastack/hexabot
synced 2025-06-26 18:27:28 +00:00
18 lines
420 B
TypeScript
18 lines
420 B
TypeScript
import DEFAULT_LIVE_CHAT_TEST_SETTINGS, {
|
|
LIVE_CHAT_TEST_GROUP_NAME,
|
|
} from './settings';
|
|
|
|
declare global {
|
|
interface Settings
|
|
extends SettingTree<typeof DEFAULT_LIVE_CHAT_TEST_SETTINGS> {}
|
|
}
|
|
|
|
declare module '@nestjs/event-emitter' {
|
|
interface IHookExtensionsOperationMap {
|
|
[LIVE_CHAT_TEST_GROUP_NAME]: TDefinition<
|
|
object,
|
|
SettingMapByType<typeof DEFAULT_LIVE_CHAT_TEST_SETTINGS>
|
|
>;
|
|
}
|
|
}
|