UNPKG

@clerk/shared

Version:

Internal package utils used by the Clerk SDKs

9 lines 510 B
import { ModuleManager } from "../../../moduleManager.js"; import { ZxcvbnResult } from "../../../types/passwords.js"; //#region src/internal/clerk-js/passwords/loadZxcvbn.d.ts type zxcvbnFN = (password: string, userInputs?: (string | number)[]) => ZxcvbnResult; declare const createLoadZxcvbn: (moduleManager: ModuleManager) => { loadZxcvbn: () => Promise<(password: string, userInputs?: (string | number)[]) => import("@zxcvbn-ts/core").ZxcvbnResult>; }; //#endregion export { createLoadZxcvbn, zxcvbnFN };