prod-wag-backend-automate-s.../node_modules/next-crypto/index.d.ts

9 lines
198 B
TypeScript

declare class NextCrypto {
constructor(secret: string);
async encrypt(plain: string): Promise<string>;
async decrypt(encrypted: string): Promise<string | null>;
}
export default NextCrypto;