mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 09:03:29 +01:00
18 lines
364 B
TypeScript
18 lines
364 B
TypeScript
import type { Access, Item, Meta, Param, Scope, Type } from './index.js';
|
|
|
|
export interface Member extends Item {
|
|
access?: Access;
|
|
default?: string;
|
|
deprecated?: boolean | string;
|
|
kind: 'member';
|
|
memberof: string;
|
|
meta: Meta;
|
|
nullable?: boolean;
|
|
properties?: Param[];
|
|
readonly?: boolean;
|
|
scope: Scope;
|
|
see?: string[];
|
|
type: Type;
|
|
virtual?: boolean;
|
|
}
|