datasquirel/functions/hashPassword.d.ts
2024-11-08 16:44:31 +01:00

6 lines
137 B
TypeScript

declare function _exports({ password, encryptionKey }: {
password: string;
encryptionKey: string;
}): string;
export = _exports;