mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 08:33:30 +01:00
23 lines
497 B
TypeScript
23 lines
497 B
TypeScript
import type { Access, Exception, Item, Meta, Param, Return, Scope } from './index.js';
|
|
|
|
export interface Method extends Item {
|
|
access?: Access;
|
|
async?: boolean;
|
|
deprecated?: boolean | string;
|
|
examples?: string[];
|
|
exceptions?: Exception[];
|
|
fires?: string[];
|
|
generator?: boolean;
|
|
implements?: string[];
|
|
inherited?: boolean;
|
|
inherits?: string;
|
|
kind: 'function';
|
|
memberof?: string;
|
|
meta: Meta;
|
|
params?: Param[];
|
|
returns?: Return[];
|
|
scope: Scope;
|
|
see?: string[];
|
|
virtual?: boolean;
|
|
}
|