/** * BCrypt options descriptor interface. */ export interface BcryptOptions { /** * Should BCrypt hashing be enabled. * Defaults to true. */ enabled?: boolean; /** * Salt rounds to be executed while generating hash. * Defaults to 10. */ saltRounds?: number; }