buroventures-harald-code-core
Version:
Harald Code Core - Core functionality for AI-powered coding assistant
12 lines (11 loc) • 380 B
TypeScript
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
export declare class FetchError extends Error {
code?: string | undefined;
constructor(message: string, code?: string | undefined);
}
export declare function isPrivateIp(url: string): boolean;
export declare function fetchWithTimeout(url: string, timeout: number): Promise<Response>;