/** * Shared types for the RDP subsystem. */ export interface RdpInfo { name: string; width: number; height: number; colorDepth: number; } export interface RdpRect { x: number; y: number; w: number; h: number; data: Buffer; } /** Options for starting an RDP session. */ export interface RdpConnectOptions { host: string; port?: number; username?: string; password?: string; domain?: string; width?: number; height?: number; colorDepth?: number; }