Skip to content

Commit

Permalink
Commit from GitHub Actions (Export and compile structures)
Browse files Browse the repository at this point in the history
  • Loading branch information
Starman3787 committed Dec 27, 2024
1 parent 7296aec commit b3457b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 66 deletions.
67 changes: 2 additions & 65 deletions dist/src/util/builder/embedBuilder.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,65 +46,6 @@ export type EmbedFooter = {
*/
icon_url?: string;
};
/**
* Represents an embed.
*/
export type Embed = {
/**
* The title of the embed.
*/
title?: string;
/**
* The description of the embed.
*/
description?: string;
/**
* The url of the embed.
*/
url?: string;
/**
* The timestamp of the embed.
*/
timestamp?: number;
/**
* The color of the embed.
*/
color?: number;
/**
* The footer of the embed.
*/
footer?: EmbedFooter;
/**
* The author of the embed.
*/
author?: EmbedAuthor;
/**
* The fields of the embed.
*/
fields?: Array<EmbedField>;
/**
* The image of the embed.
*/
image?: {
url?: string;
};
/**
* The thumbnail of the embed.
*/
thumbnail?: {
url?: string;
};
/**
* The video of the embed.
*/
video?: {
url?: string;
};
/**
* The character count of the embed.
*/
characterCount: number;
};
/**
* Represents an author in an embed.
* @typedef {Object} EmbedAuthor
Expand All @@ -126,8 +67,8 @@ export type Embed = {
* @property {String} [icon_url] The footer icon url.
*/
/**
* Represents an embed.
* @typedef {Object} Embed
* Helps to create an embed for a message.
* @see {@link https://discord.com/developers/docs/resources/channel#embed-object-embed-structure}
* @property {String} [title] The title of the embed.
* @property {String} [description] The description of the embed.
* @property {String} [url] The url of the embed.
Expand All @@ -144,10 +85,6 @@ export type Embed = {
* @property {String} [video.url] The video url.
* @property {Number} characterCount The character count of the embed.
*/
/**
* Helps to create an embed for a message.
* @see {@link https://discord.com/developers/docs/resources/channel#embed-object-embed-structure}
*/
declare class Embed {
/**
* Creates an embed structure.
Expand Down
2 changes: 1 addition & 1 deletion dist/src/util/builder/embedBuilder.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b3457b0

Please sign in to comment.