index.d.ts 475 B

123456
  1. import zxcvbnOptions, { Options } from './Options';
  2. import debounce from './debounce';
  3. import { MatchExtended, ZxcvbnResult, Matcher, MatchOptions } from './types';
  4. export declare const zxcvbn: (password: string, userInputs?: (string | number)[]) => ZxcvbnResult;
  5. export declare const zxcvbnAsync: (password: string, userInputs?: (string | number)[]) => Promise<ZxcvbnResult>;
  6. export { zxcvbnOptions, ZxcvbnResult, debounce, Options, Matcher, MatchOptions, MatchExtended, };