mirror of
https://github.com/sern-handler/create-bot
synced 2026-06-06 01:16:53 +00:00
18 lines
504 B
Plaintext
18 lines
504 B
Plaintext
/**
|
|
* This file serves as intellisense for sern projects.
|
|
* Types are declared here for dependencies to function properly
|
|
* Service(s) api rely on this file to provide a better developer experience.
|
|
*/
|
|
|
|
import { SernEmitter, Logging, CoreModuleStore, ModuleManager, ErrorHandling, CoreDependencies, Singleton } from '@sern/handler'
|
|
import { Client } from 'discord.js'
|
|
|
|
declare global {
|
|
interface Dependencies extends CoreDependencies {
|
|
'@sern/client': Singleton<Client>
|
|
}
|
|
}
|
|
|
|
|
|
export {}
|