UNPKG

@naturalcycles/nodejs-lib

Version:
12 lines (11 loc) 374 B
export interface DecryptCLIOptions { dir: string[]; encKey: string; algorithm?: string; del?: boolean; } /** * Decrypts all files in given directory (*.enc), saves decrypted versions without ending `.enc`. * Using provided encKey. */ export declare function secretsDecrypt(dir: string[], encKey: string, algorithm?: string, del?: boolean): Promise<void>;