From ea1c5a54079633c4d2ed1e4fab57d6e8a433e6c6 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Thu, 18 Dec 2025 11:40:17 +0100 Subject: [PATCH] fix: supprimer les commentaires eslint inutiles dans la configuration des types --- worker-configuration.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worker-configuration.d.ts b/worker-configuration.d.ts index 86020e2..68cff7a 100644 --- a/worker-configuration.d.ts +++ b/worker-configuration.d.ts @@ -8603,7 +8603,7 @@ type AIGatewayHeaders = { [key: string]: string | number | boolean | object; }; type AIGatewayUniversalRequest = { - provider: AIGatewayProviders | string; // eslint-disable-line + provider: AIGatewayProviders | string; endpoint: string; headers: Partial; query: unknown; @@ -8619,7 +8619,7 @@ declare abstract class AiGateway { gateway?: UniversalGatewayOptions; extraHeaders?: object; }): Promise; - getUrl(provider?: AIGatewayProviders | string): Promise; // eslint-disable-line + getUrl(provider?: AIGatewayProviders | string): Promise; } interface AutoRAGInternalError extends Error { }