@u4/adbkit
Version:
A Typescript client for the Android Debug Bridge.
19 lines • 566 B
TypeScript
import Command from '../../command.js';
export interface UninstallCommandOptions {
/**
* keep the data and cache directories around after package removal.
*/
keep?: boolean;
/**
* remove the app from the given user.
*/
user?: string | number;
/**
* only uninstall if the app has the given version code.
*/
versionCode?: string;
}
export default class UninstallCommand extends Command<boolean> {
execute(pkg: string, opts?: UninstallCommandOptions): Promise<boolean>;
}
//# sourceMappingURL=uninstall.d.ts.map