mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
1c2321b438
* refactored additionalArgs to command and change its type to string instead of string array
20 lines
442 B
TypeScript
20 lines
442 B
TypeScript
import { BSVersion } from "shared/bs-version.interface";
|
|
|
|
export const LaunchMods = {
|
|
OCULUS: "oculus",
|
|
FPFC: "fpfc",
|
|
DEBUG: "debug",
|
|
SKIP_STEAM: "skip_steam",
|
|
EDITOR: "editor",
|
|
PROTON_LOGS: "proton_logs",
|
|
} as const;
|
|
|
|
export type LaunchMod = typeof LaunchMods[keyof typeof LaunchMods];
|
|
|
|
export interface LaunchOption {
|
|
version: BSVersion,
|
|
launchMods?: LaunchMod[],
|
|
command?: string,
|
|
admin?: boolean
|
|
}
|