mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 12:26:38 -06:00
079bb34196
* feat(cua-computer): add recording resource handles * test(agents): split computer tool coverage
8 lines
242 B
TypeScript
8 lines
242 B
TypeScript
import type { CuaExecutionResources } from "./execution-resources.js";
|
|
import type { CuaRecordingState } from "./recording-actions.js";
|
|
|
|
export type CuaExecutionState = {
|
|
resources: CuaExecutionResources;
|
|
recording: CuaRecordingState;
|
|
};
|