mirror of
https://github.com/danbulant/discord.js
synced 2026-05-30 12:51:55 +00:00
29 lines
805 B
JavaScript
29 lines
805 B
JavaScript
const Webhook = require('../structures/Webhook');
|
|
const BaseClient = require('./BaseClient');
|
|
|
|
/**
|
|
* The webhook client.
|
|
* @extends {Webhook}
|
|
* @extends {BaseClient}
|
|
*/
|
|
class WebhookClient extends BaseClient {
|
|
/**
|
|
* @param {Snowflake} id ID of the webhook
|
|
* @param {string} token Token of the webhook
|
|
* @param {ClientOptions} [options] Options for the client
|
|
* @example
|
|
* // Create a new webhook and send a message
|
|
* const hook = new Discord.WebhookClient('1234', 'abcdef');
|
|
* hook.send('This will send a message').catch(console.error);
|
|
*/
|
|
constructor(id, token, options) {
|
|
super(options);
|
|
Object.defineProperty(this, 'client', { value: this });
|
|
this.id = id;
|
|
this.token = token;
|
|
}
|
|
}
|
|
|
|
Webhook.applyToClass(WebhookClient);
|
|
|
|
module.exports = WebhookClient;
|