Files
openclaw/src/cli/gateway-rpc.types.ts
2026-06-03 18:25:21 -04:00

10 lines
260 B
TypeScript

// Shared RPC option shape for gateway CLI commands.
/** Common gateway RPC flags accepted by direct gateway command helpers. */
export type GatewayRpcOpts = {
url?: string;
token?: string;
timeout?: string;
expectFinal?: boolean;
json?: boolean;
};