From b0542f30e29b6faee2b56a650c1a22c841561833 Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Wed, 12 Nov 2025 13:59:08 +0000 Subject: [PATCH] style: ESLint --- packages/core/src/api/webhook.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/packages/core/src/api/webhook.ts b/packages/core/src/api/webhook.ts index d26d0c70e..cbe7a2cd5 100644 --- a/packages/core/src/api/webhook.ts +++ b/packages/core/src/api/webhook.ts @@ -22,10 +22,11 @@ import { export type CreateWebhookMessageOptions = RESTPostAPIWebhookWithTokenJSONBody & RESTPostAPIWebhookWithTokenQuery & { files?: RawFile[] }; -export type EditWebhookMessageOptions = RESTPatchAPIWebhookWithTokenMessageJSONBody & RESTPatchAPIWebhookWithTokenMessageQuery & { - files?: RawFile[]; - thread_id?: string; -}; +export type EditWebhookMessageOptions = RESTPatchAPIWebhookWithTokenMessageJSONBody & + RESTPatchAPIWebhookWithTokenMessageQuery & { + files?: RawFile[]; + thread_id?: string; + }; export class WebhooksAPI { public constructor(private readonly rest: REST) {}