初始化
This commit is contained in:
13
typings/appium-xcuitest-driver/build/lib/device-connections-factory.d.ts
vendored
Normal file
13
typings/appium-xcuitest-driver/build/lib/device-connections-factory.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
declare class DeviceConnectionsFactory {
|
||||
listConnections (udid?: string | null, port?: string | null, strict?: boolean): string[];
|
||||
requestConnection(
|
||||
udid: string,
|
||||
port: number,
|
||||
options: { usePortForwarding?: boolean; devicePort?: number },
|
||||
): Promise<void>;
|
||||
releaseConnection(udid: string | null, port: number | null): void;
|
||||
}
|
||||
declare const DEVICE_CONNECTIONS_FACTORY: DeviceConnectionsFactory;
|
||||
|
||||
export { DEVICE_CONNECTIONS_FACTORY, DeviceConnectionsFactory };
|
||||
export default DEVICE_CONNECTIONS_FACTORY;
|
||||
Reference in New Issue
Block a user