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) {}