Skip to content

Commit e7ae6ca

Browse files
committed
lint
1 parent d8a52c6 commit e7ae6ca

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/renderer/types/electron.d.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,15 @@ declare global {
1212
storeApiKey: (apiKey: string) => Promise<string>;
1313
retrieveApiKey: (encryptedKey: string) => Promise<string | null>;
1414
// OAuth API
15-
oauthStartFlow: (
16-
region: CloudRegion,
17-
) => Promise<{
15+
oauthStartFlow: (region: CloudRegion) => Promise<{
1816
success: boolean;
1917
data?: OAuthTokenResponse;
2018
error?: string;
2119
}>;
2220
oauthEncryptTokens: (
2321
tokens: StoredOAuthTokens,
2422
) => Promise<{ success: boolean; encrypted?: string; error?: string }>;
25-
oauthRetrieveTokens: (
26-
encrypted: string,
27-
) => Promise<{
23+
oauthRetrieveTokens: (encrypted: string) => Promise<{
2824
success: boolean;
2925
data?: StoredOAuthTokens;
3026
error?: string;

0 commit comments

Comments
 (0)