UNPKG

@iosifnicolae22/remote-shell

Version:

Run any terminal application and control it remotely from your mobile device. Perfect for maxing out vibe coding sessions with Claude Code on the go!

14 lines 379 B
export interface RemoteConfig { websocketHost?: string; hostname?: string; } export declare class ConfigManager { private configDir; private configFile; constructor(); private ensureConfigDir; getConfig(): RemoteConfig; setConfig(key: keyof RemoteConfig, value: string): void; showConfig(): void; } //# sourceMappingURL=config-manager.d.ts.map