export default class StringUtils { /** * 判断字符串是否为空或undefined,不判断为0,不判断为false * @param str * @returns {boolean} */ static isEmpty: (str: any) => boolean; static isNotEmpty: (str: any) => boolean; static isInteger: (value: string) => boolean; }