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