UNPKG

@every-env/cli

Version:

Multi-agent orchestrator for AI-powered development workflows

11 lines 364 B
import { FileMatchSchema } from '../types/config.js'; import { z } from 'zod'; export interface FileMatchResult { path: string; relativePath: string; name: string; } export declare class FilePatternMatcher { match(pattern: z.infer<typeof FileMatchSchema>, basePath?: string): Promise<FileMatchResult[]>; } //# sourceMappingURL=file-pattern.d.ts.map