feat(adb): rewrite process spawner API (#739)

This commit is contained in:
Simon Chan 2025-04-02 15:20:05 +08:00 committed by GitHub
parent 46e78401a4
commit d3019ce738
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
75 changed files with 1422 additions and 1022 deletions

View file

@ -40,8 +40,8 @@ export class ScrcpyOptionsWrapper<T extends object>
return this.#base.uHidOutput;
}
constructor(options: ScrcpyOptions<T>) {
this.#base = options;
constructor(base: ScrcpyOptions<T>) {
this.#base = base;
}
serialize(): string[] {