wiki search people tested pipeline

This commit is contained in:
Alvis
2026-03-05 11:22:34 +00:00
parent 09a93c661e
commit a30936f120
152 changed files with 47694 additions and 263 deletions

View File

@@ -0,0 +1,16 @@
import { Agent as HttpAgent } from "http";
import { Agent as HttpsAgent } from "https";
import { Readable } from "stream";
export { debug } from "debug";
export declare const itrToStream: (itr: AsyncIterable<Uint8Array>) => Readable;
export declare function baseFetchConfig(apiRoot: string): {
compress: boolean;
agent: HttpsAgent;
} | {
agent: HttpAgent;
compress?: undefined;
} | {
compress?: undefined;
agent?: undefined;
};
export declare const defaultAdapter = "express";