(adb: Adb, path: string)
| 36 | } |
| 37 | |
| 38 | getDisplays(adb: Adb, path: string): Promise<ScrcpyDisplay[]> { |
| 39 | return getDisplays(adb, path, this); |
| 40 | } |
| 41 | |
| 42 | createConnection(adb: Adb): AdbScrcpyConnection { |
| 43 | return createConnection(adb, this.value); |
nothing calls this directly
no test coverage detected