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;
};
export type GatewayInstallTokenResolution = {
type GatewayInstallTokenResolution = {
token?: string;
tokenRefConfigured: boolean;
unavailableReason?: string;

View File

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

View File

@@ -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<string, string | undefined>;

View File

@@ -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;