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

7 lines
155 B
TypeScript
Raw Normal View History

2024-11-08 15:44:31 +00:00
export = decrypt;
/**
* @param {string} encryptedString
* @returns {string | null}
*/
declare function decrypt(encryptedString: string): string | null;