mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-17 08:02:12 -06:00
509f5d3409
* 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
14 lines
316 B
TypeScript
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>;
|