@every-env/cli
Version:
Multi-agent orchestrator for AI-powered development workflows
18 lines • 568 B
TypeScript
import { ContentMatchSchema } from '../types/config.js';
import { z } from 'zod';
export interface ContentMatchResult {
file: string;
match: string;
captures: Record<string, string>;
line?: number;
column?: number;
context?: string;
}
export declare class ContentPatternMatcher {
match(pattern: z.infer<typeof ContentMatchSchema>, files: string[]): Promise<ContentMatchResult[]>;
private extractMatches;
private extractCaptures;
private extractContext;
private filterExcluded;
}
//# sourceMappingURL=content-pattern.d.ts.map