UNPKG

logkitten

Version:

Stream Android and iOS logs without Android Studio or Console.app, with programmatic Node.js API for log analysis.

8 lines 459 B
/// <reference types="node" /> import { ChildProcess } from 'child_process'; import type { AndroidOptions } from './types'; export declare function run({ adbPath, deviceId }: AndroidOptions): ChildProcess; export declare function getSdkRoot(): string | undefined; export declare function getAdbPath(customPath?: string): string; export declare function spawnLogcatProcess(adbPath: string, deviceId?: string): ChildProcess; //# sourceMappingURL=runner.d.ts.map