UNPKG

567 BTypeScriptView Raw
1export declare const validChars: RegExp;
2export declare const validCharsTeamName: RegExp;
3export declare const isValidOpName: (opName: string) => boolean;
4export declare const isValidTeamName: (teamName: string) => boolean;
5export declare const validateEmail: (email: string) => boolean;
6export declare const validatePasswordFormat: (input: string) => true | "❗ This password is too short, please choose a password that is at least 8 characters long";
7export declare const validateCpassword: (input: string, answers: {
8 password: string;
9}) => string | boolean;