datasquirel/dist/package-shared/functions/dsql/decrypt.d.ts
Benjamin Toby a3561da53d Updates
2025-01-10 20:35:05 +01:00

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 {};