UNPKG

@wise-community/angular-password-strength-meter

Version:

[![CI](https://github.com/antoantonyk/password-strength-meter/actions/workflows/ci-workflow.yml/badge.svg)](https://github.com/antoantonyk/password-strength-meter/actions/workflows/ci-workflow.yml) [![npm version](https://badge.fury.io/js/angular-password

11 lines (7 loc) 403 B
import { InjectionToken, EnvironmentProviders } from '@angular/core'; import { OptionsType } from '@zxcvbn-ts/core/dist/types'; type ZxvbnConfigType = OptionsType; declare const ZXCVBN_CONFIG: InjectionToken<OptionsType>; declare function provideZxvbnServiceForPSM(config?: ZxvbnConfigType): EnvironmentProviders; export { ZXCVBN_CONFIG, provideZxvbnServiceForPSM }; export type { ZxvbnConfigType };