mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 08:33:30 +01:00
12 lines
232 B
TypeScript
12 lines
232 B
TypeScript
import type { Item, Meta, Param, Scope } from './index.js';
|
|
|
|
export interface Event extends Item {
|
|
deprecated?: boolean | string;
|
|
kind: 'event';
|
|
memberof: string;
|
|
meta: Meta;
|
|
params?: Param[];
|
|
scope: Scope;
|
|
see?: string[];
|
|
}
|