mirror of
https://github.com/ReVanced/revanced-bots.git
synced 2026-01-20 09:43:59 +00:00
chore(bots/discord): reduce footprint of functions
This commit is contained in:
@@ -3,11 +3,11 @@ import { api } from '../../context'
|
||||
|
||||
const { client } = api
|
||||
|
||||
export function on<Event extends EventName>(event: Event, listener: ListenerOf<Event>) {
|
||||
export const on = <Event extends EventName>(event: Event, listener: ListenerOf<Event>) => {
|
||||
client.on(event, listener)
|
||||
}
|
||||
|
||||
export function once<Event extends EventName>(event: Event, listener: ListenerOf<Event>) {
|
||||
export const once = <Event extends EventName>(event: Event, listener: ListenerOf<Event>) => {
|
||||
client.once(event, listener)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user