UNPKG

@u4/adbkit-monkey

Version:

A Node.js interface to the Android monkey tool.

8 lines 223 B
import Command from "./command"; export default class Queue { head: Command | null; tail: Command | null; enqueue(item: Command): void; dequeue(): Command | null; } //# sourceMappingURL=queue.d.ts.map