refactor: trim cli helper type exports

This commit is contained in:
Peter Steinberger
2026-05-02 00:55:03 +01:00
parent edbe8d0ec3
commit 900e21fb1a
5 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ import { formatErrorMessage } from "../infra/errors.js";
export { formatErrorMessage };
export type ManagerLookupResult<T> = {
type ManagerLookupResult<T> = {
manager: T | null;
error?: string;
};

View File

@@ -39,7 +39,7 @@ type CommandSecretResolutionModeInput =
| CommandSecretResolutionMode
| LegacyCommandSecretResolutionMode;
export type CommandSecretTargetState =
type CommandSecretTargetState =
| "resolved_gateway"
| "resolved_local"
| "inactive_surface"

View File

@@ -16,7 +16,7 @@ export type NativeHookRelayCliOptions = {
timeout?: string;
};
export type NativeHookRelayCliDeps = {
type NativeHookRelayCliDeps = {
stdin?: NodeJS.ReadableStream;
stdout?: NodeJS.WritableStream;
stderr?: NodeJS.WritableStream;

View File

@@ -2,7 +2,7 @@ import * as path from "node:path";
import { resolveCliName } from "./cli-name.js";
import { asRecord, asString, resolveTempPathParts } from "./nodes-media-utils.js";
export type CanvasSnapshotPayload = {
type CanvasSnapshotPayload = {
format: string;
base64: string;
};

View File

@@ -1,6 +1,6 @@
import { theme } from "../terminal/theme.js";
export type PluginUpdateCliOutcome = {
type PluginUpdateCliOutcome = {
status: string;
message: string;
};