UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

9 lines (8 loc) 655 B
export declare const minCharacter: (password: string, min: number) => boolean; export declare const maxCharacter: (password: string, max: number) => boolean; export declare const haveDigits: (password: string, parsedRepeat?: number) => boolean; export declare const haveLetters: (password: string, parsedRepeat?: number) => boolean; export declare const haveSymbols: (password: string, parsedRepeat?: number) => boolean; export declare const noSpaces: (password: string) => boolean; export declare const upperCase: (password: string, parsedRepeat?: number) => boolean; export declare const lowerCase: (password: string, parsedRepeat?: number) => boolean;