UNPKG

noxon

Version:

Better JSON parsing and manipulation in TypeScript.

5 lines (3 loc) 254 B
declare function encryptText(plaintext: string): Promise<Record<string, any> | undefined>; declare function decryptText(encryptedDataBase64: string, ivBase64: string, keyBase64: string): Promise<string | undefined>; export { decryptText, encryptText };