style: ESLint

This commit is contained in:
Jiralite
2025-11-12 13:59:08 +00:00
parent 84197a0ee0
commit b0542f30e2

View File

@@ -22,10 +22,11 @@ import {
export type CreateWebhookMessageOptions = RESTPostAPIWebhookWithTokenJSONBody &
RESTPostAPIWebhookWithTokenQuery & { files?: RawFile[] };
export type EditWebhookMessageOptions = RESTPatchAPIWebhookWithTokenMessageJSONBody & RESTPatchAPIWebhookWithTokenMessageQuery & {
export type EditWebhookMessageOptions = RESTPatchAPIWebhookWithTokenMessageJSONBody &
RESTPatchAPIWebhookWithTokenMessageQuery & {
files?: RawFile[];
thread_id?: string;
};
};
export class WebhooksAPI {
public constructor(private readonly rest: REST) {}