UNPKG

ts-mean

Version:

Boilerplate for a TS-MEAN App

10 lines (9 loc) 195 B
export interface User { uid?: string; email: string; password?: { hash: string; algorithm: HashingAlgorithm; }; } export declare type HashingAlgorithm = 'bcrypt';