datasquirel/dist/package-shared/functions/dsql/decrypt.d.ts
Benjamin Toby 6593047efd Updates
2025-04-18 12:06:15 +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 {};