@react-grab/claude-code 0.0.98 → 0.1.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ import { Options } from '@anthropic-ai/claude-agent-sdk';
2
+ import { AgentRunOptions, AgentHandler } from '@react-grab/relay';
3
+
4
+ interface ClaudeAgentOptions extends AgentRunOptions, Omit<Options, "cwd"> {
5
+ }
6
+ declare const claudeAgentHandler: AgentHandler;
7
+
8
+ export { type ClaudeAgentOptions, claudeAgentHandler };
@@ -0,0 +1,8 @@
1
+ import { Options } from '@anthropic-ai/claude-agent-sdk';
2
+ import { AgentRunOptions, AgentHandler } from '@react-grab/relay';
3
+
4
+ interface ClaudeAgentOptions extends AgentRunOptions, Omit<Options, "cwd"> {
5
+ }
6
+ declare const claudeAgentHandler: AgentHandler;
7
+
8
+ export { type ClaudeAgentOptions, claudeAgentHandler };