mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-19 04:53:30 +01:00
docs: Remove @private constructor documentation (#8255)
This commit is contained in:
@@ -6,11 +6,6 @@ const isEqual = require('fast-deep-equal');
|
|||||||
* Represents a component
|
* Represents a component
|
||||||
*/
|
*/
|
||||||
class Component {
|
class Component {
|
||||||
/**
|
|
||||||
* Creates a new component from API data
|
|
||||||
* @param {APIMessageComponent} data The API component data
|
|
||||||
* @private
|
|
||||||
*/
|
|
||||||
constructor(data) {
|
constructor(data) {
|
||||||
/**
|
/**
|
||||||
* The API data associated with this component
|
* The API data associated with this component
|
||||||
|
|||||||
@@ -7,11 +7,6 @@ const { ErrorCodes } = require('../errors');
|
|||||||
* Represents an interaction's response
|
* Represents an interaction's response
|
||||||
*/
|
*/
|
||||||
class InteractionResponse {
|
class InteractionResponse {
|
||||||
/**
|
|
||||||
* @param {BaseInteraction} interaction The interaction associated with this response
|
|
||||||
* @param {Snowflake?} id The interaction id associated with the original response
|
|
||||||
* @private
|
|
||||||
*/
|
|
||||||
constructor(interaction, id) {
|
constructor(interaction, id) {
|
||||||
/**
|
/**
|
||||||
* The interaction associated with the interaction response
|
* The interaction associated with the interaction response
|
||||||
|
|||||||
Reference in New Issue
Block a user