cloudflare/cloudflare-typescript

Public

mirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v7

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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
3import { ClientOptions } from 'cloudflare';
4
5export type WorkerInput = {
6 project_name: string;
7 code: string;
8 client_opts: ClientOptions;
9 intent?: string | undefined;
10};
11
12export type WorkerOutput = {
13 is_error: boolean;
14 result: unknown | null;
15 log_lines: string[];
16 err_lines: string[];
17};
18