vibetunnel
Version:
Terminal sharing server with web interface - supports macOS, Linux, and headless environments
11 lines (10 loc) • 333 B
TypeScript
import { Router } from 'express';
import type { AuthService } from '../services/auth-service.js';
interface AuthRoutesConfig {
authService: AuthService;
enableSSHKeys?: boolean;
disallowUserPassword?: boolean;
noAuth?: boolean;
}
export declare function createAuthRoutes(config: AuthRoutesConfig): Router;
export {};