UNPKG

vibetunnel

Version:

Terminal sharing server with web interface - supports macOS, Linux, and headless environments

12 lines (11 loc) 268 B
/** * Simple queue for serializing async write operations */ export declare class WriteQueue { private queue; enqueue(writeFn: () => Promise<void> | void): void; /** * Wait for all queued operations to complete */ drain(): Promise<void>; }