From 1b76a3fc301b28d924d1c98f597816d13e724895 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 2 May 2026 04:01:27 +0100 Subject: [PATCH] refactor: trim config version helper types --- src/config/types.crestodian.ts | 2 +- src/config/version.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/types.crestodian.ts b/src/config/types.crestodian.ts index 8ee7eb8171e..fbc210a1e18 100644 --- a/src/config/types.crestodian.ts +++ b/src/config/types.crestodian.ts @@ -1,4 +1,4 @@ -export type CrestodianRescueConfig = { +type CrestodianRescueConfig = { /** * Remote message rescue gate. * "auto" enables only for YOLO host posture with sandboxing off. diff --git a/src/config/version.ts b/src/config/version.ts index 4a8e1383513..fafda188cb6 100644 --- a/src/config/version.ts +++ b/src/config/version.ts @@ -3,7 +3,7 @@ import { normalizeLegacyDotBetaVersion, } from "../infra/semver-compare.js"; -export type OpenClawVersion = { +type OpenClawVersion = { major: number; minor: number; patch: number;