Wire up Dead Domain CI Check for Node.js 26 [skip ci]

This commit is contained in:
SukkaW
2026-08-09 18:32:00 +08:00
parent 14f5811242
commit f141253cfe
5 changed files with 41 additions and 13 deletions

View File

@@ -174,6 +174,8 @@ const agent = new Agent({
})
);
export { agent as fetchAgent };
export interface FetchResponseProgress {
onResponseStart?: (contentEncoding: string | null) => void,
onEncodedBodyChunk?: (bytes: number) => void,