mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-03 09:49:24 +02:00
19 lines
407 B
TypeScript
19 lines
407 B
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;
|
|
}
|