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

6 lines
137 B
TypeScript
Raw Normal View History

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