From 62e1be2b980491ac46a65485382d3567cffc4dd0 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 1 May 2026 21:17:18 +0100 Subject: [PATCH] refactor: trim command args type export --- src/auto-reply/commands-args.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auto-reply/commands-args.ts b/src/auto-reply/commands-args.ts index cafdf503cd3..c4032eeef8a 100644 --- a/src/auto-reply/commands-args.ts +++ b/src/auto-reply/commands-args.ts @@ -4,7 +4,7 @@ import { } from "../shared/string-coerce.js"; import type { CommandArgValues } from "./commands-registry.types.js"; -export type CommandArgsFormatter = (values: CommandArgValues) => string | undefined; +type CommandArgsFormatter = (values: CommandArgValues) => string | undefined; function normalizeArgValue(value: unknown): string | undefined { if (value == null) {