UNPKG

appium-xcuitest-driver

Version:

Appium driver for iOS using XCUITest for backend

14 lines 577 B
import type { RemoteXPCFacade } from './remote-xpc'; export interface IXctestAttachmentDeletionClient { deleteAttachmentsByUuid(uuids: string[]): Promise<void>; } /** * Deletes XCTest screen-recording attachments on a real device via appium-ios-remotexpc * (testmanagerd). */ export declare class XctestAttachmentDeletionClient implements IXctestAttachmentDeletionClient { private readonly facade; constructor(facade: RemoteXPCFacade); deleteAttachmentsByUuid(uuids: string[]): Promise<void>; } //# sourceMappingURL=xctest-attachment-deletion-client.d.ts.map