mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-02-01 04:29:36 +01:00
fix: supprimer les commentaires eslint inutiles dans la configuration des types
This commit is contained in:
4
worker-configuration.d.ts
vendored
4
worker-configuration.d.ts
vendored
@@ -8603,7 +8603,7 @@ type AIGatewayHeaders = {
|
|||||||
[key: string]: string | number | boolean | object;
|
[key: string]: string | number | boolean | object;
|
||||||
};
|
};
|
||||||
type AIGatewayUniversalRequest = {
|
type AIGatewayUniversalRequest = {
|
||||||
provider: AIGatewayProviders | string; // eslint-disable-line
|
provider: AIGatewayProviders | string;
|
||||||
endpoint: string;
|
endpoint: string;
|
||||||
headers: Partial<AIGatewayHeaders>;
|
headers: Partial<AIGatewayHeaders>;
|
||||||
query: unknown;
|
query: unknown;
|
||||||
@@ -8619,7 +8619,7 @@ declare abstract class AiGateway {
|
|||||||
gateway?: UniversalGatewayOptions;
|
gateway?: UniversalGatewayOptions;
|
||||||
extraHeaders?: object;
|
extraHeaders?: object;
|
||||||
}): Promise<Response>;
|
}): Promise<Response>;
|
||||||
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>;
|
||||||
}
|
}
|
||||||
interface AutoRAGInternalError extends Error {
|
interface AutoRAGInternalError extends Error {
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user