vibetunnel
Version:
Terminal sharing server with web interface - supports macOS, Linux, and headless environments
13 lines (12 loc) • 423 B
TypeScript
/**
* PTY Module Entry Point
*
* This module exports all the PTY-related components for easy integration
* with the existing server code.
*/
export { AsciinemaWriter } from './asciinema-writer.js';
export { ProcessUtils } from './process-utils.js';
export { PtyManager } from './pty-manager.js';
export { SessionManager } from './session-manager.js';
export * from './types.js';
export { PtyError } from './types.js';