@react-grab/codex 0.0.81

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,11 @@
1
+ import * as hono_types from 'hono/types';
2
+ import { Hono } from 'hono';
3
+
4
+ interface CodexAgentOptions {
5
+ model?: string;
6
+ workingDirectory?: string;
7
+ }
8
+ declare const createServer: () => Hono<hono_types.BlankEnv, hono_types.BlankSchema, "/">;
9
+ declare const startServer: (port?: number) => Promise<void>;
10
+
11
+ export { type CodexAgentOptions, createServer, startServer };
@@ -0,0 +1,11 @@
1
+ import * as hono_types from 'hono/types';
2
+ import { Hono } from 'hono';
3
+
4
+ interface CodexAgentOptions {
5
+ model?: string;
6
+ workingDirectory?: string;
7
+ }
8
+ declare const createServer: () => Hono<hono_types.BlankEnv, hono_types.BlankSchema, "/">;
9
+ declare const startServer: (port?: number) => Promise<void>;
10
+
11
+ export { type CodexAgentOptions, createServer, startServer };