UNPKG

shell-mirror

Version:

Access your Mac shell from any device securely. Perfect for mobile coding with Claude Code CLI, Gemini CLI, and any shell tool.

8 lines (7 loc) 233 B
/// <reference types="node" /> import { Readable } from 'stream'; export interface ProxyResponse { statusCode: number; buffered: Buffer; } export default function parseProxyResponse(socket: Readable): Promise<ProxyResponse>;