mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-22 21:21:12 +00:00
* 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>;
|