refactor: trim command shape exports

This commit is contained in:
Peter Steinberger
2026-05-01 22:11:47 +01:00
parent 407c84e573
commit 4b8856ecbb
4 changed files with 4 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ type GatewayInstallTokenOptions = {
persistGeneratedToken?: boolean; persistGeneratedToken?: boolean;
}; };
export type GatewayInstallTokenResolution = { type GatewayInstallTokenResolution = {
token?: string; token?: string;
tokenRefConfigured: boolean; tokenRefConfigured: boolean;
unavailableReason?: string; unavailableReason?: string;

View File

@@ -1,6 +1,6 @@
import { readStringValue } from "../shared/string-coerce.js"; import { readStringValue } from "../shared/string-coerce.js";
export type GatewaySelfPresence = { type GatewaySelfPresence = {
host?: string; host?: string;
ip?: string; ip?: string;
version?: string; version?: string;

View File

@@ -9,7 +9,7 @@ import {
import type { DaemonInstallWarnFn } from "./daemon-install-runtime-warning.js"; import type { DaemonInstallWarnFn } from "./daemon-install-runtime-warning.js";
import type { NodeDaemonRuntime } from "./node-daemon-runtime.js"; import type { NodeDaemonRuntime } from "./node-daemon-runtime.js";
export type NodeInstallPlan = { type NodeInstallPlan = {
programArguments: string[]; programArguments: string[];
workingDirectory?: string; workingDirectory?: string;
environment: Record<string, string | undefined>; environment: Record<string, string | undefined>;

View File

@@ -1,7 +1,7 @@
import { type RuntimeEnv, writeRuntimeJson } from "../runtime.js"; import { type RuntimeEnv, writeRuntimeJson } from "../runtime.js";
import { resolveStatusJsonOutput } from "./status-json-runtime.ts"; import { resolveStatusJsonOutput } from "./status-json-runtime.ts";
export type StatusJsonCommandOptions = { type StatusJsonCommandOptions = {
deep?: boolean; deep?: boolean;
usage?: boolean; usage?: boolean;
timeoutMs?: number; timeoutMs?: number;