Repository URL to install this package:
|
Version:
2.7.6 ▾
|
declare const matchName: RegExp;
declare function isValidName(name: string): boolean;
declare function isValidNameWithoutSpace(name: string): boolean;
declare function isEmptyOrValidName(name: string): boolean;
export { matchName };
export { isValidName, isEmptyOrValidName, isValidNameWithoutSpace };
export default isValidName;