jellyfin-discord-bot/server/structures/event.ts
mightypanders 66f843b399
All checks were successful
Compile the repository / compile (pull_request) Successful in 1m12s
format more files
2023-06-24 21:09:56 +02:00

9 lines
194 B
TypeScript

import { ClientEvents } from "discord.js";
export class Event<Key extends keyof ClientEvents>{
constructor(
public event: Key,
public run: (...args: ClientEvents[Key]) => unknown
) { }
}