datasquirel/dist/package-shared/functions/api/users/reset-password/(utils)/encrypt-url.d.ts
Benjamin Toby 20754d5cae Updates
2025-01-14 14:19:50 +01:00

12 lines
298 B
TypeScript

type Param = {
email: string;
encryptionKey?: string;
encryptionSalt?: string;
};
export type EncryptResetPasswordObject = {
email: string;
createdAt: number;
};
export default function encryptReserPasswordUrl({ email, encryptionKey, encryptionSalt, }: Param): void;
export {};