datasquirel/package-shared/functions/dsql/hashPassword.d.ts
Benjamin Toby 7bd4b2fe65 Updates
2024-12-08 09:58:57 +01:00

6 lines
138 B
TypeScript

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