mirror of
https://github.com/redphx/better-xcloud.git
synced 2025-12-21 06:27:00 +01:00
10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
import type { StreamVideoProcessing } from "@/enums/pref-values";
|
|
|
|
type StreamPlayerOptions = {
|
|
processing: StreamVideoProcessing,
|
|
sharpness: number,
|
|
saturation: number,
|
|
contrast: number,
|
|
brightness: number,
|
|
};
|