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 & export type CreateWebhookMessageOptions = RESTPostAPIWebhookWithTokenJSONBody &
RESTPostAPIWebhookWithTokenQuery & { files?: RawFile[] }; RESTPostAPIWebhookWithTokenQuery & { files?: RawFile[] };
export type EditWebhookMessageOptions = RESTPatchAPIWebhookWithTokenMessageJSONBody & RESTPatchAPIWebhookWithTokenMessageQuery & { export type EditWebhookMessageOptions = RESTPatchAPIWebhookWithTokenMessageJSONBody &
files?: RawFile[]; RESTPatchAPIWebhookWithTokenMessageQuery & {
thread_id?: string; files?: RawFile[];
}; thread_id?: string;
};
export class WebhooksAPI { export class WebhooksAPI {
public constructor(private readonly rest: REST) {} public constructor(private readonly rest: REST) {}