zxcvbn3
Version:
realistic password strength estimation
24 lines (23 loc) • 757 B
TypeScript
import { Options } from './main';
export declare function translate(v: string, options: Options): any;
export declare class Feedback {
static default_feedback: {
warning: '';
suggestions: [
"USE_WORDS_NO_COMMON_PHRASES",
"NO_NEED_FOR_SPECIAL_CHARS"
];
};
static get_feedback(score: any, sequence: any[], options: Options): {
warning: any;
suggestions: any;
};
static get_match_feedback(match: any, is_sole_match: any, options: Options): {
warning: any;
suggestions: any;
};
static get_dictionary_match_feedback(match: any, is_sole_match: any, options: Options): {
warning: string;
suggestions: any[];
};
}