mirror of
https://github.com/SrIzan10/sern-create-bot.git
synced 2026-05-01 11:05:20 +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 {}
|