UNPKG

@u4/adbkit

Version:

A Typescript client for the Android Debug Bridge.

10 lines 295 B
import Sync from '../../sync.js'; import Command from '../../command.js'; export default class SyncCommand extends Command { async execute() { await this._send('sync:'); await this.readOKAY(); return new Sync(this.connection); } } //# sourceMappingURL=sync.js.map