refactor: trim tool config exports

This commit is contained in:
Peter Steinberger
2026-05-01 21:13:29 +01:00
parent f86cb612b9
commit 84c85734a8
2 changed files with 1 additions and 7 deletions

View File

@@ -569,9 +569,3 @@ export const TOOL_DISPLAY_CONFIG: ToolDisplayConfig = {
},
},
};
export function serializeToolDisplayConfig(
config: ToolDisplayConfig = TOOL_DISPLAY_CONFIG,
): string {
return `${JSON.stringify(config, null, 2)}\n`;
}

View File

@@ -226,7 +226,7 @@ export function unwrapShellWrapper(command: string): string {
return inner ? (stripOuterQuotes(inner) ?? command) : command;
}
export function scanTopLevelChars(
function scanTopLevelChars(
command: string,
visit: (char: string, index: number) => boolean | void,
): void {