cloudflare/cloudflare-typescript
Publicmirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable
packages/mcp-server/src/code-tool-types.ts
17lines · modecode
| 1 | // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. |
| 2 | |
| 3 | import { ClientOptions } from 'cloudflare'; |
| 4 | |
| 5 | export type WorkerInput = { |
| 6 | project_name: string; |
| 7 | code: string; |
| 8 | client_opts: ClientOptions; |
| 9 | intent?: string | undefined; |
| 10 | }; |
| 11 | |
| 12 | export type WorkerOutput = { |
| 13 | is_error: boolean; |
| 14 | result: unknown | null; |
| 15 | log_lines: string[]; |
| 16 | err_lines: string[]; |
| 17 | }; |
| 18 | |