fix: ensure both values are passed to object to prevent false outcome

This commit is contained in:
Hachi-R
2024-10-30 17:46:52 -03:00
parent 36813d5f86
commit 0d68851cf4
2 changed files with 10 additions and 4 deletions

View File

@@ -115,8 +115,8 @@ declare global {
preferences: Partial<UserPreferences>
) => Promise<void>;
autoLaunch: (autoLaunchProps: {
enabled?: boolean;
minimized?: boolean;
enabled: boolean;
minimized: boolean;
}) => Promise<void>;
authenticateRealDebrid: (apiToken: string) => Promise<RealDebridUser>;