mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 07:20:43 +00:00
refactor: trim command shape exports
This commit is contained in:
@@ -24,7 +24,7 @@ type GatewayInstallTokenOptions = {
|
||||
persistGeneratedToken?: boolean;
|
||||
};
|
||||
|
||||
export type GatewayInstallTokenResolution = {
|
||||
type GatewayInstallTokenResolution = {
|
||||
token?: string;
|
||||
tokenRefConfigured: boolean;
|
||||
unavailableReason?: string;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { readStringValue } from "../shared/string-coerce.js";
|
||||
|
||||
export type GatewaySelfPresence = {
|
||||
type GatewaySelfPresence = {
|
||||
host?: string;
|
||||
ip?: string;
|
||||
version?: string;
|
||||
|
||||
@@ -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>;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user