/** * 判断是否包含某字符 * @param str 字符串 * @param char 字符 * @returns 是否包含 * @see {@link https://yourhhh.github.io/zztoolDocument} API 文档 * @example * // 调用示例 * regIsHas('hello world', 'o'); // true */ export declare function regIsHas(str: string, char: string): boolean;