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 6bb188f commit 9770876
Show file tree
Hide file tree
Showing 52 changed files with 280 additions and 262 deletions.
2 changes: 1 addition & 1 deletion dist/src/Client.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ declare class Client extends TypedEmitter<{
* @readonly
* @public
*/
public readonly get shardIds(): number[];
public readonly get shardIds(): Array<number>;
/**
* The total number of shards that this client is managing.
* @type {Number}
Expand Down
2 changes: 1 addition & 1 deletion dist/src/Client.d.ts.map

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

2 changes: 1 addition & 1 deletion dist/src/constants.d.ts.map

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

2 changes: 1 addition & 1 deletion dist/src/managers/ChannelMessageManager.d.ts.map

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

2 changes: 1 addition & 1 deletion dist/src/managers/GuildMemberManager.d.ts.map

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

1 change: 1 addition & 0 deletions dist/src/structures/Attachment.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export default Attachment;
* @see {@link https://discord.com/developers/docs/resources/channel#attachment-object-attachment-structure}
*/
declare class Attachment {
[x: number]: () => string;
/**
* Creates a structure for an attachment.
* @param {Client} client The client instance.
Expand Down
2 changes: 1 addition & 1 deletion dist/src/structures/Attachment.d.ts.map

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

31 changes: 16 additions & 15 deletions dist/src/structures/AuditLog.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export default AuditLog;
* @see {@link https://discord.com/developers/docs/resources/audit-log#audit-log-entry-object}
*/
declare class AuditLog {
[x: number]: () => string;
/**
* Creates a structure for an audit log entry.
* @param {Client} client The client instance.
Expand Down Expand Up @@ -43,105 +44,105 @@ declare class AuditLog {
* @readonly
* @public
*/
public readonly get targetId(): string;
public readonly get targetId(): string | null;
/**
* The channel id involved with this audit log entry.
* @type {String?}
* @readonly
* @public
*/
public readonly get channelId(): string;
public readonly get channelId(): string | null;
/**
* The guild that this audit log belongs to.
* @type {Guild?}
* @readonly
* @public
*/
public readonly get guild(): Guild;
public readonly get guild(): Guild | null;
/**
* The channel involved with this audit log entry.
* @type {(TextChannel | VoiceChannel)?} The channel involved with this audit log entry.
* @readonly
* @public
*/
public readonly get channel(): any;
public readonly get channel(): (TextChannel | VoiceChannel) | null;
/**
* The target user involved with this audit log entry.
* @type {User?}
* @readonly
* @public
*/
public readonly get target(): User;
public readonly get target(): User | null;
/**
* The executor user involved with this audit log entry.
* @type {String?}
* @readonly
* @public
*/
public readonly get executorId(): string;
public readonly get executorId(): string | null;
/**
* The executor user involved with this audit log entry.
* @type {User?}
* @readonly
* @public
*/
public readonly get executor(): User;
public readonly get executor(): User | null;
/**
* The reason for this audit log entry.
* @type {String?}
* @readonly
* @public
*/
public readonly get reason(): string;
public readonly get reason(): string | null;
/**
* The count of this type of audit log entry.
* @type {Number?}
* @readonly
* @public
*/
public readonly get count(): number;
public readonly get count(): number | null;
/**
* The inactivity period for when members are purged.
* @type {Number?}
* @readonly
* @public
*/
public readonly get deleteMemberDays(): number;
public readonly get deleteMemberDays(): number | null;
/**
* The number of members removed for when members are purged.
* @type {Number?}
* @readonly
* @public
*/
public readonly get membersRemoved(): number;
public readonly get membersRemoved(): number | null;
/**
* The id of the overwritten entity.
* @type {String?}
* @readonly
* @public
*/
public readonly get specialId(): string;
public readonly get specialId(): string | null;
/**
* The type of the overwritten entity - role ("0") or member ("1")
* @type {Number?}
* @readonly
* @public
*/
public readonly get specialType(): number;
public readonly get specialType(): number | null;
/**
* The new voice channel status.
* @type {String?}
* @readonly
* @public
*/
public readonly get status(): string;
public readonly get status(): string | null;
/**
* The changes in this audit log entry.
* @type {Object?}
* @readonly
* @public
*/
public readonly get changes(): any;
public readonly get changes(): any | null;
/**
* @method
* @public
Expand Down
2 changes: 1 addition & 1 deletion dist/src/structures/AuditLog.d.ts.map

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

2 changes: 1 addition & 1 deletion dist/src/structures/ButtonClick.d.ts.map

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

5 changes: 3 additions & 2 deletions dist/src/structures/CategoryChannel.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export default CategoryChannel;
declare class CategoryChannel {
[x: number]: () => string;
/**
* Creates the structure for a category channel.
* @param {Client} client The client instance.
Expand Down Expand Up @@ -32,7 +33,7 @@ declare class CategoryChannel {
* @readonly
* @public
*/
public readonly get guild(): Guild;
public readonly get guild(): Guild | null;
/**
* The name of the channel.
* @type {String}
Expand All @@ -53,7 +54,7 @@ declare class CategoryChannel {
* @readonly
* @public
*/
public readonly get permissionOverwrites(): PermissionOverwrite[];
public readonly get permissionOverwrites(): Array<PermissionOverwrite>;
/**
* Whether the channel is nsfw.
* @type {Boolean}
Expand Down
2 changes: 1 addition & 1 deletion dist/src/structures/CategoryChannel.d.ts.map

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

Loading

0 comments on commit 9770876

Please sign in to comment.