mirror of https://github.com/openclaw/openclaw.git
9 lines
518 B
TypeScript
9 lines
518 B
TypeScript
// Public fetch/proxy helpers for plugins that need wrapped fetch behavior.
|
|
|
|
export { resolveFetch, wrapFetchWithAbortSignal } from "../infra/fetch.js";
|
|
export { withTrustedEnvProxyGuardedFetchMode } from "../infra/net/fetch-guard.ts";
|
|
export { hasEnvHttpProxyConfigured } from "../infra/net/proxy-env.js";
|
|
export { getProxyUrlFromFetch, makeProxyFetch } from "../infra/net/proxy-fetch.js";
|
|
export { createPinnedLookup } from "../infra/net/ssrf.js";
|
|
export type { PinnedDispatcherPolicy } from "../infra/net/ssrf.js";
|