mirror of
https://github.com/redphx/better-xcloud.git
synced 2025-06-04 22:57:19 +02:00
11 lines
303 B
TypeScript
11 lines
303 B
TypeScript
export enum UserAgentProfile {
|
|
WINDOWS_EDGE = 'windows-edge',
|
|
MACOS_SAFARI = 'macos-safari',
|
|
SMARTTV_GENERIC = 'smarttv-generic',
|
|
SMARTTV_TIZEN = 'smarttv-tizen',
|
|
VR_OCULUS = 'vr-oculus',
|
|
ANDROID_KIWI_V123 = 'android-kiwi-v123',
|
|
DEFAULT = 'default',
|
|
CUSTOM = 'custom',
|
|
}
|