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 Nov 18, 2024
1 parent 152e361 commit 21cc960
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 2 deletions.
23 changes: 23 additions & 0 deletions dist/src/Client.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,29 @@ declare class Client extends TypedEmitter<{
* @throws {TypeError}
*/
public registerCommands(commands: Array<Command>): Array<any>;
/**
* Fetches the emojis for this client.
* @returns {Array<Object>}
* @public
* @method
* @async
*/
public fetchEmojis(): Array<any>;
/**
* Creates an emoji for this client.
* @param {Object} emoji The emoji to create.
* @param {String} emoji.name The name of the emoji.
* @param {String} emoji.image The image of the emoji (base64, should start with "data:image/png;base64,").
* @returns {Promise<void>}
* @public
* @method
* @async
* @throws {TypeError}
*/
public createEmoji({ name, image }: {
name: string;
image: string;
}): Promise<void>;
/**
* Sets the bot's status across all shards.
* @param {Object} status Status options.
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.

20 changes: 20 additions & 0 deletions dist/src/rest/endpoints.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,26 @@ declare namespace _default {
export function mockResponse_36({ params }?: {}): any;
export { mockResponse_36 as mockResponse };
}
namespace getClientEmojis {
export function path_37(client_id: any): string;
export { path_37 as path };
let method_37: string;
export { method_37 as method };
let majorParams_37: number[];
export { majorParams_37 as majorParams };
export function mockResponse_37({ params }?: {}): any;
export { mockResponse_37 as mockResponse };
}
namespace postAddClientEmoji {
export function path_38(client_id: any): string;
export { path_38 as path };
let method_38: string;
export { method_38 as method };
let majorParams_38: number[];
export { majorParams_38 as majorParams };
export function mockResponse_38({ params }?: {}): any;
export { mockResponse_38 as mockResponse };
}
}
export default _default;
//# sourceMappingURL=endpoints.d.ts.map
2 changes: 1 addition & 1 deletion dist/src/rest/endpoints.d.ts.map

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

0 comments on commit 21cc960

Please sign in to comment.