diff --git a/src/commands/gateway-install-token.ts b/src/commands/gateway-install-token.ts index b3a42816a01..7ef22f87930 100644 --- a/src/commands/gateway-install-token.ts +++ b/src/commands/gateway-install-token.ts @@ -24,7 +24,7 @@ type GatewayInstallTokenOptions = { persistGeneratedToken?: boolean; }; -export type GatewayInstallTokenResolution = { +type GatewayInstallTokenResolution = { token?: string; tokenRefConfigured: boolean; unavailableReason?: string; diff --git a/src/commands/gateway-presence.ts b/src/commands/gateway-presence.ts index dba553cf365..48d674febeb 100644 --- a/src/commands/gateway-presence.ts +++ b/src/commands/gateway-presence.ts @@ -1,6 +1,6 @@ import { readStringValue } from "../shared/string-coerce.js"; -export type GatewaySelfPresence = { +type GatewaySelfPresence = { host?: string; ip?: string; version?: string; diff --git a/src/commands/node-daemon-install-helpers.ts b/src/commands/node-daemon-install-helpers.ts index 321dff5a664..7bf8d8ef6dc 100644 --- a/src/commands/node-daemon-install-helpers.ts +++ b/src/commands/node-daemon-install-helpers.ts @@ -9,7 +9,7 @@ import { import type { DaemonInstallWarnFn } from "./daemon-install-runtime-warning.js"; import type { NodeDaemonRuntime } from "./node-daemon-runtime.js"; -export type NodeInstallPlan = { +type NodeInstallPlan = { programArguments: string[]; workingDirectory?: string; environment: Record; diff --git a/src/commands/status-json-command.ts b/src/commands/status-json-command.ts index a8057b28839..d1a0a29c743 100644 --- a/src/commands/status-json-command.ts +++ b/src/commands/status-json-command.ts @@ -1,7 +1,7 @@ import { type RuntimeEnv, writeRuntimeJson } from "../runtime.js"; import { resolveStatusJsonOutput } from "./status-json-runtime.ts"; -export type StatusJsonCommandOptions = { +type StatusJsonCommandOptions = { deep?: boolean; usage?: boolean; timeoutMs?: number;