@zxcvbn-ts/matcher-pwned
Version:
HaveIBeenPwned Matcher for zxcvbn-ts
6 lines (5 loc) • 324 B
TypeScript
import { Matcher, Options } from '@zxcvbn-ts/core';
import haveIBeenPwned from './haveIBeenPwned';
import { FetchApi, MatcherPwnedFactoryConfig } from './types';
export declare const matcherPwnedFactory: (universalFetch: FetchApi, options: Options, config?: MatcherPwnedFactoryConfig) => Matcher;
export { haveIBeenPwned };