mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 08:33:30 +01:00
10 lines
197 B
TypeScript
10 lines
197 B
TypeScript
import type { Access, Item, Param } from './index.js';
|
|
|
|
export interface Constructor extends Item {
|
|
access?: Access;
|
|
kind: 'constructor';
|
|
memberof: string;
|
|
params?: Param[];
|
|
see?: string[];
|
|
}
|