11 lines
246 B
TypeScript
11 lines
246 B
TypeScript
type Param = {
|
|
encryptedString: string;
|
|
encryptionKey?: string;
|
|
encryptionSalt?: string;
|
|
};
|
|
/**
|
|
* # Decrypt Function
|
|
*/
|
|
export default function decrypt({ encryptedString, encryptionKey, encryptionSalt, }: Param): string;
|
|
export {};
|