10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
type Param = {
|
|
password: string;
|
|
encryptionKey?: string;
|
|
};
|
|
/**
|
|
* # Hash password Function
|
|
*/
|
|
export default function hashPassword({ password, encryptionKey, }: Param): string;
|
|
export {};
|