mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 16:43:31 +01:00
14 lines
279 B
TypeScript
14 lines
279 B
TypeScript
import type { Access, Item, Meta, Scope } from './index.js';
|
|
|
|
export interface Class extends Item {
|
|
access?: Access;
|
|
augments?: string[];
|
|
deprecated?: boolean | string;
|
|
implements?: string[];
|
|
kind: 'class';
|
|
meta: Meta;
|
|
scope: Scope;
|
|
see?: string[];
|
|
virtual?: boolean;
|
|
}
|