(value: string)
| 53 | * @returns Promise resolving to the decrypted plaintext string. |
| 54 | */ |
| 55 | export async function decryptValue(value: string): Promise<string> { |
| 56 | return await window.gitify.decryptValue(value); |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Quit the application. |
no outgoing calls
no test coverage detected