Files
openclaw/scripts/e2e/lib/bounded-response-text.d.mts
Peter Steinberger 509f5d3409 fix: bound npm fixture upstream response bodies (#108960)
* test: bound npm fixture upstream responses

* test: auto-clean npm fixture temp dirs

* style: format npm fixture assertion test

* test: simplify plugin fixture temp cleanup
2026-07-16 04:53:43 -07:00

14 lines
316 B
TypeScript

export function readBoundedResponseBytes(
response: unknown,
label: unknown,
byteLimit: unknown,
timeoutPromise?: Promise<never>,
): Promise<Buffer>;
export function readBoundedResponseText(
response: unknown,
label: unknown,
byteLimit: unknown,
timeoutPromise?: Promise<never>,
): Promise<string>;