framework
Version:
The (AI) Framework: turnkey, zero-config AI orchestration that wraps a coding-agent CLI (Claude Code) as a black box and takes you from an idea to a running app. Vite for AI.
9 lines • 414 B
TypeScript
/** One device to health-check: its profile id plus the origin and token to reach it with. */
export interface DeviceCheck {
id: string;
url: string;
token: string;
}
/** Ping each saved device and map its id to whether it answered (#1072). Bad entries are dropped. */
export declare function checkDevices(devices: DeviceCheck[]): Promise<Record<string, boolean>>;
//# sourceMappingURL=devices.d.ts.map