UNPKG

json-secure-store

Version:

Typed JSON storage wrapper for localStorage/sessionStorage with optional encryption.

3 lines (2 loc) 177 B
export declare function encryptData(data: string, secret: string): Promise<string>; export declare function decryptData(encryptedData: string, secret: string): Promise<string>;