Skip to content

Instantly share code, notes, and snippets.

@wai-lin
Created June 1, 2022 08:13
Show Gist options
  • Save wai-lin/9db1750526be1335a09c56321d241119 to your computer and use it in GitHub Desktop.
Save wai-lin/9db1750526be1335a09c56321d241119 to your computer and use it in GitHub Desktop.
aes-everywhere Type definitions
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