//#region packages/judge/matchsStart.d.ts /** * 判断字符串是否匹配 字符串采用前匹配 * @param {string} key 当前字符串 * @param { Array } matchs 匹配的字符串或者正则表达式数组 * @returns {boolean} 空数组 true */ declare function matchsStart(key: string, matchs?: Array): boolean; //#endregion export { matchsStart as t };