refactor(codemode): namespace public types (#35435)

This commit is contained in:
Aiden Cline
2026-07-05 11:51:50 -05:00
committed by GitHub
parent f950497173
commit f9d1d3b259
14 changed files with 423 additions and 475 deletions
+2 -3
View File
@@ -6,10 +6,9 @@ import {
identifierSegment,
inputProperties,
inputTypeScript,
isDefinition as isToolDefinition,
outputTypeScript,
type Definition,
} from "./tool.js"
} from "./tool-schema.js"
import { isDefinition as isToolDefinition, type Definition } from "./tool.js"
import { SandboxDate, SandboxMap, SandboxPromise, SandboxRegExp, SandboxSet } from "./values.js"
const estimateTokens = (input: string) => Math.max(0, Math.round(input.length / 4))