Files
moeka-project/services/minecraft/src/composables/events.ts
T

10 lines
319 B
TypeScript

export interface BotInternalEventHandlers {
'time:sunrise': () => void
'time:noon': () => void
'time:sunset': () => void
'time:midnight': () => void
}
export type BotInternalEvents = keyof BotInternalEventHandlers
export type BotInternalEventsHandler<K extends BotInternalEvents> = BotInternalEventHandlers[K]