mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-16 20:21:35 +00:00
10 lines
260 B
TypeScript
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;
|
|
};
|