Add Polling rate setting

This commit is contained in:
redphx
2024-10-21 22:01:32 +07:00
parent 831fd98d02
commit 5e98c756d4
10 changed files with 56 additions and 11 deletions

View File

@@ -12,6 +12,7 @@ interface Window {
BX_EXPOSED: any;
BX_VIBRATION_INTENSITY: number;
BX_CONTROLLER_POLLING_RATE: number;
BX_ENABLE_CONTROLLER_VIBRATION: boolean;
BX_ENABLE_DEVICE_VIBRATION: boolean;

View File

@@ -59,4 +59,5 @@ export type NumberStepperParams = Partial<{
exactTicks: number;
customTextValue: (value: any) => string | null;
reverse: boolean;
}>