node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
/// <reference types="node" />
import { Cipher } from 'crypto';
import { Algorithm } from '../../../types';
/**
* It creates a cipher instance used for decryption
*
* @param key - The decryption key
* @param algorithm - The algorithm to use to create the Cipher
*
* @returns A {@link Cipher} instance created with the given key & algorithm
*/
export declare const createDecryptionCipher: (key: string, algorithm?: Algorithm) => Cipher;
//# sourceMappingURL=decrypt.d.ts.map