datasquirel/package-shared/functions/dsql/hashPassword.d.ts

6 lines
138 B
TypeScript
Raw Normal View History

2024-11-08 15:44:31 +00:00
declare function _exports({ password, encryptionKey }: {
password: string;
2024-12-08 08:58:57 +00:00
encryptionKey?: string;
2024-11-08 15:44:31 +00:00
}): string;
export = _exports;