UNPKG

@vorlefan/prisma-backup

Version:

Export all the databse models into json files and use them as backup

14 lines (13 loc) 296 B
export declare type EncryptDataProps = { password: string; text: string; }; export declare type EncryptDataResult = { encryptedText: string; iv: string; }; export declare type DecryptDataProps = { password: string; encryptedText?: string; iv?: string; };