From 2cc85c64f1c64a2dbaeae276a3e2ca8420de76b7 Mon Sep 17 00:00:00 2001
From: WXL <wl_5969728@163.com>
Date: 星期三, 22 四月 2026 18:09:58 +0800
Subject: [PATCH] 上报转运调试
---
node_modules/undici-types/index.d.ts | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/node_modules/undici-types/index.d.ts b/node_modules/undici-types/index.d.ts
index be0bc28..78ddeaa 100644
--- a/node_modules/undici-types/index.d.ts
+++ b/node_modules/undici-types/index.d.ts
@@ -5,6 +5,7 @@
import { RedirectHandler, DecoratorHandler } from './handlers'
import BalancedPool from './balanced-pool'
+import RoundRobinPool from './round-robin-pool'
import Client from './client'
import H2CClient from './h2c-client'
import buildConnector from './connector'
@@ -23,6 +24,12 @@
import { request, pipeline, stream, connect, upgrade } from './api'
import interceptors from './interceptors'
+import CacheInterceptor from './cache-interceptor'
+declare const cacheStores: {
+ MemoryCacheStore: typeof CacheInterceptor.MemoryCacheStore;
+ SqliteCacheStore: typeof CacheInterceptor.SqliteCacheStore;
+}
+
export * from './util'
export * from './cookies'
export * from './eventsource'
@@ -36,7 +43,7 @@
declare function globalThisInstall (): void
-export { Dispatcher, BalancedPool, Pool, Client, buildConnector, errors, Agent, request, stream, pipeline, connect, upgrade, setGlobalDispatcher, getGlobalDispatcher, setGlobalOrigin, getGlobalOrigin, interceptors, MockClient, MockPool, MockAgent, SnapshotAgent, MockCallHistory, MockCallHistoryLog, mockErrors, ProxyAgent, EnvHttpProxyAgent, RedirectHandler, DecoratorHandler, RetryHandler, RetryAgent, H2CClient, globalThisInstall as install }
+export { Dispatcher, BalancedPool, RoundRobinPool, Pool, Client, buildConnector, errors, Agent, request, stream, pipeline, connect, upgrade, setGlobalDispatcher, getGlobalDispatcher, setGlobalOrigin, getGlobalOrigin, interceptors, cacheStores, MockClient, MockPool, MockAgent, SnapshotAgent, MockCallHistory, MockCallHistoryLog, mockErrors, ProxyAgent, EnvHttpProxyAgent, RedirectHandler, DecoratorHandler, RetryHandler, RetryAgent, H2CClient, globalThisInstall as install }
export default Undici
declare namespace Undici {
@@ -46,6 +53,7 @@
const DecoratorHandler: typeof import ('./handlers').DecoratorHandler
const RetryHandler: typeof import ('./retry-handler').default
const BalancedPool: typeof import('./balanced-pool').default
+ const RoundRobinPool: typeof import('./round-robin-pool').default
const Client: typeof import('./client').default
const H2CClient: typeof import('./h2c-client').default
const buildConnector: typeof import('./connector').default
--
Gitblit v1.9.3