datasquirel/package-shared/functions/backend/decrypt.d.ts
2024-11-08 16:44:31 +01:00

7 lines
155 B
TypeScript

export = decrypt;
/**
* @param {string} encryptedString
* @returns {string | null}
*/
declare function decrypt(encryptedString: string): string | null;