longcelot-sheet-db
Version:
Google Sheets-backed staging database adapter for Node.js with schema-first design
7 lines • 317 B
TypeScript
export declare function hashPassword(password: string): Promise<string>;
export declare function comparePassword(password: string, hash: string): Promise<boolean>;
export declare function validatePasswordStrength(password: string): {
valid: boolean;
errors: string[];
};
//# sourceMappingURL=password.d.ts.map