datasquirel/package-shared/functions/dsql/decrypt.d.ts

14 lines
368 B
TypeScript
Raw Normal View History

2024-12-06 10:44:26 +00:00
export = decrypt;
/**
* @param {object} param0
* @param {string} param0.encryptedString
* @param {string} [param0.encryptionKey]
* @param {string} [param0.encryptionSalt]
* @returns
*/
declare function decrypt({ encryptedString, encryptionKey, encryptionSalt }: {
encryptedString: string;
encryptionKey?: string;
encryptionSalt?: string;
}): string;