/// /// /// import type * as http from 'http'; import type * as https from 'https'; import { get, IncomingMessage, request } from 'http'; import * as url from 'url'; export type IgnoreMatcher = string | RegExp | ((url: string) => boolean); export type HttpCallback = (res: IncomingMessage) => void; export type RequestFunction = typeof request; export type GetFunction = typeof get; export type HttpCallbackOptional = HttpCallback | undefined; export type RequestSignature = [http.RequestOptions, HttpCallbackOptional] & HttpCallback; export type HttpRequestArgs = Array; export type ParsedRequestOptions = (http.RequestOptions & Partial) | http.RequestOptions; export type Http = typeof http; export type Https = typeof https; export type Func = (...args: any[]) => T; export interface Err extends Error { errno?: number; code?: string; path?: string; syscall?: string; stack?: string; } /** * Names of possible synthetic test sources. */ export declare const SYNTHETIC_TEST_NAMES: string[]; /** * Names of possible synthetic bot sources. */ export declare const SYNTHETIC_BOT_NAMES: string[]; /** * REDACTED string used to replace sensitive information in URLs. */ export declare const STR_REDACTED = "REDACTED"; /** * List of URL query keys that are considered sensitive and whose value should be redacted. */ export declare const DEFAULT_QUERY_STRINGS_TO_REDACT: readonly ["sig", "Signature", "AWSAccessKeyId", "X-Goog-Signature"]; //# sourceMappingURL=internal-types.d.ts.map