mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 17:13:31 +01:00
feat: docgen package (#8029)
This commit is contained in:
9
packages/docgen/src/interfaces/constructor.interface.ts
Normal file
9
packages/docgen/src/interfaces/constructor.interface.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import type { Access, Item, Param } from './index.js';
|
||||
|
||||
export interface Constructor extends Item {
|
||||
kind: 'constructor';
|
||||
memberof: string;
|
||||
see?: string[];
|
||||
access?: Access;
|
||||
params?: Param[];
|
||||
}
|
||||
Reference in New Issue
Block a user