import { TextWithStyle } from '../utils/ansi-parser'; import { BaseTerminalDetectionLineMatcher, MatcherType } from './base'; export declare class NodeMatcher extends BaseTerminalDetectionLineMatcher { type: MatcherType; isMultiLine: boolean; maxSpaceLine: number; /** * node 情况 * 1. 整行都是红色 * 2. 整行都是红色,但存在其他样式,导致列表数组长度未知 */ doMatch(styleList: TextWithStyle[]): boolean; private isSingleLineError; private isMultiPartError; /** * 需要排除的一些场景 * 1. 内容长度小于20 * 2. 包含 mfsu 以及相关的解释信息 例如: - 不出现三层或以上的 ../ 相对路径查找。、 */ private isExcludeContent; } //# sourceMappingURL=node.d.ts.map