mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-12 09:33:32 +01:00
feat: docgen package (#8029)
This commit is contained in:
13
packages/docgen/src/interfaces/class.interface.ts
Normal file
13
packages/docgen/src/interfaces/class.interface.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { Access, Item, Meta, Scope } from './index.js';
|
||||
|
||||
export interface Class extends Item {
|
||||
kind: 'class';
|
||||
scope: Scope;
|
||||
implements?: string[];
|
||||
augments?: string[];
|
||||
see?: string[];
|
||||
access?: Access;
|
||||
virtual?: boolean;
|
||||
deprecated?: boolean | string;
|
||||
meta: Meta;
|
||||
}
|
||||
Reference in New Issue
Block a user