(value: string)
| 43 | * @returns Promise resolving to the encrypted string. |
| 44 | */ |
| 45 | export async function encryptValue(value: string): Promise<string> { |
| 46 | return await window.gitify.encryptValue(value); |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Decrypts a previously encrypted string using the native Electron decryption bridge. |
no outgoing calls
no test coverage detected