refactor: trim config helper exports

This commit is contained in:
Peter Steinberger
2026-05-01 19:58:27 +01:00
parent 052e5a8147
commit 0ba5586ba9
2 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ import {
} from "openclaw/plugin-sdk/extension-shared";
import { z } from "openclaw/plugin-sdk/zod";
export type OpenShellPluginConfig = {
type OpenShellPluginConfig = {
mode?: "mirror" | "remote";
command?: string;
gateway?: string;
@@ -101,7 +101,7 @@ function isManagedOpenShellRemotePath(value: string): boolean {
);
}
export function normalizeOpenShellRemotePath(
function normalizeOpenShellRemotePath(
value: string | undefined,
fallback: string,
fieldName = "remote path",