datasquirel/dist/package-shared/functions/dsql/decrypt.d.ts
Benjamin Toby c37d105dee Updates
2025-07-09 20:30:45 +01:00

12 lines
274 B
TypeScript

type Param = {
encryptedString: string;
encryptionKey?: string;
encryptionSalt?: string;
debug?: boolean;
};
/**
* # Decrypt Function
*/
export default function decrypt({ encryptedString, encryptionKey, encryptionSalt, debug, }: Param): string;
export {};