dsql-admin/dsql-app/package-shared/functions/backend/decrypt.d.ts

7 lines
155 B
TypeScript
Raw Normal View History

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