From 2ffffe3e329b57773a797671866fb98346b37808 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Thu, 18 Dec 2025 21:44:34 +0100 Subject: [PATCH] fix: supprimer les commentaires eslint inutiles dans la configuration du worker --- 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 f9ee652..a977309 100644 --- a/worker-configuration.d.ts +++ b/worker-configuration.d.ts @@ -8593,7 +8593,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; @@ -8609,7 +8609,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 { }