@yume-chan/scrcpy
Version:
TypeScript implementation of Scrcpy client.
20 lines (16 loc) • 407 B
text/typescript
import type { PrevImpl } from "./prev.js";
export interface Init extends PrevImpl.Init {
downsizeOnError?: boolean;
/**
* Send device name and size at start of video stream.
*
* @default true
*/
sendDeviceMeta?: boolean;
/**
* Send a `0` byte on start of video stream to detect connection issues
*
* @default true
*/
sendDummyByte?: boolean;
}