Files
tk-ws-scrcpy/typings/appium-xcuitest-driver/build/lib/server.d.ts

10 lines
247 B
TypeScript
Raw Normal View History

2025-07-30 13:39:32 +08:00
import { Server as HttpServer } from 'http';
import { XCUITestDriver } from './driver';
export class Server extends HttpServer {
public driver: XCUITestDriver;
}
export function startServer(port: string | number, address?: string): Server;