Created
June 1, 2022 08:13
-
-
Save wai-lin/9db1750526be1335a09c56321d241119 to your computer and use it in GitHub Desktop.
aes-everywhere Type definitions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module 'aes-everywhere' { | |
export function encrypt(input: string, passphrase: string): string | |
export function decrypt(crypted: string, passphrase: string): string | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment