datasquirel/package-shared/functions/dsql/hashPassword.d.ts
Benjamin Toby 8ca2779741 Updates
2024-12-06 11:31:24 +01:00

6 lines
137 B
TypeScript

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