@every-env/cli
Version:
Multi-agent orchestrator for AI-powered development workflows
17 lines • 402 B
TypeScript
export interface PatternMatch {
type: 'file' | 'content';
value: string;
metadata?: Record<string, unknown>;
}
export interface PatternExecutionContext {
match?: unknown;
matchIndex?: number;
matchTotal?: number;
outputPath: string;
}
export interface ExecutionOptions {
dryRun?: boolean;
force?: boolean;
only?: string[];
}
//# sourceMappingURL=pattern.d.ts.map