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

11 lines
229 B
TypeScript

type Param = {
data: string;
encryptionKey?: string;
encryptionSalt?: string;
};
/**
* # Encrypt String
*/
export default function encrypt({ data, encryptionKey, encryptionSalt, }: Param): string | null;
export {};