muse/src/types.ts

16 lines
353 B
TypeScript
Raw Normal View History

2020-03-13 04:41:26 +01:00
export const TYPES = {
Bot: Symbol('Bot'),
Cache: Symbol('Cache'),
2020-03-13 04:41:26 +01:00
Client: Symbol('Client'),
2021-09-20 01:50:25 +02:00
Config: Symbol('Config'),
2020-03-13 04:41:26 +01:00
Command: Symbol('Command'),
2021-09-20 01:50:25 +02:00
ThirdParty: Symbol('ThirdParty'),
Managers: {
2021-09-20 04:24:46 +02:00
Player: Symbol('PlayerManager'),
2020-03-18 03:36:48 +01:00
},
Services: {
2020-03-18 23:15:45 +01:00
GetSongs: Symbol('GetSongs'),
2021-09-20 04:24:46 +02:00
NaturalLanguage: Symbol('NaturalLanguage'),
},
2020-03-13 04:41:26 +01:00
};