appium-ios-device
Version:
Appium API for dealing with iOS devices
18 lines • 711 B
TypeScript
export default SyslogService;
export class SyslogService extends BaseServiceSocket {
constructor(socketClient: any);
_decoder: SyslogDecoder;
/** The callback function which will be called during log listening
* @callback LogCallback
* @param {string} log The log that is sent from the phone
*/
/**
* Start receiving logs from the phone. The callback when a log is received
* @param {LogCallback} onData
*/
start(onData: (log: string) => any): void;
}
export const SYSLOG_SERVICE_NAME: "com.apple.syslog_relay";
import { BaseServiceSocket } from '../base-service';
import { SyslogDecoder } from './transformer/syslog-decoder';
//# sourceMappingURL=index.d.ts.map