feat: rename childprocess to subprocess

This commit is contained in:
Simon Chan 2022-02-15 23:18:39 +08:00
parent 443190e22a
commit 1a8891d4fc
22 changed files with 185 additions and 211 deletions

View file

@ -9,7 +9,7 @@ export class Settings extends AdbCommandBase {
// TODO: `--user <user>` argument
public base(command: string, namespace: SettingsNamespace, ...args: string[]) {
return this.adb.childProcess.spawnAndWaitLegacy(['settings', command, namespace, ...args]);
return this.adb.subprocess.spawnAndWaitLegacy(['settings', command, namespace, ...args]);
}
public get(namespace: SettingsNamespace, key: string) {