zxcvbn-typescript
Version:
realistic password strength estimation, updated and ported to Typescript from Dan Wheeler's zxcvbn
10 lines • 326 B
TypeScript
import { IMatch } from "./support";
export interface IRepeatMatch extends IMatch {
pattern: "repeat";
base_token: string;
base_guesses: number;
base_matches: IMatch[];
repeat_count: number;
}
export declare function repeat_match(password: string): IRepeatMatch[];
//# sourceMappingURL=repeat_match.d.ts.map