mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-16 13:21:35 +00:00
* refactor(mac): reuse CLI node-host runtime * fix(mac): prefer checkout CLI in debug builds * chore: leave release notes to release automation * chore(mac): sync native string inventory * chore(mac): refresh native locale artifacts * fix(node): satisfy native and deadcode gates
11 lines
330 B
TypeScript
11 lines
330 B
TypeScript
/** Minimal Gateway request surface consumed by the reusable node-host runtime. */
|
|
import type { GatewayClientRequestOptions } from "../gateway/client.js";
|
|
|
|
export type NodeHostClient = {
|
|
request<T = Record<string, unknown>>(
|
|
method: string,
|
|
params?: unknown,
|
|
opts?: GatewayClientRequestOptions,
|
|
): Promise<T>;
|
|
};
|