refactor: trim command args type export

This commit is contained in:
Peter Steinberger
2026-05-01 21:17:18 +01:00
parent 866be0baae
commit 62e1be2b98

View File

@@ -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) {