UNPKG

@u4/adbkit-monkey

Version:

A Node.js interface to the Android monkey tool.

19 lines 568 B
import Api from './api'; import Client from './client'; import { Callback } from './Callback'; export default class Multi extends Api { monkey: Client; commands: any[]; replies: any[]; errors: any[]; sent: boolean; callback: Callback<any>; counter: number; collector: (err: Error, result: string, cmd: string) => void; constructor(monkey: Client); _maybeFinish(): void; _forbidReuse(): void; send(command: string): void; execute(callback: Callback<any>): void; } //# sourceMappingURL=multi.d.ts.map