mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-03 05:26:07 +00:00
Update EventsKey
This commit is contained in:
parent
070a96c414
commit
75e35a1ecb
@ -669,11 +669,11 @@ export interface Ready extends Omit<DiscordReady, 'user'> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Alias of `keyof Events`. List of all events that can be emitted by the session.
|
||||
* Alias of `keyof (Events) & string`. List of all events that can be emitted by the session.
|
||||
* Ex: ready, messageCreate, guildCreate, etc.
|
||||
* @see {@link Events}
|
||||
*/
|
||||
export type EventsKey = keyof Events;
|
||||
export type EventsKey = keyof (Events) & string
|
||||
|
||||
export interface Events {
|
||||
ready: Handler<[Ready, number]>;
|
||||
|
Loading…
x
Reference in New Issue
Block a user