import type { ExecutorContext, TaskGraph } from "@nx/devkit"; import type { BiomeExecutorOptions } from "./schema"; type BatchExecutorTaskResult = { task: string; success: boolean; terminalOutput: string; }; /** * Batch executor - runs biome check once for all projects * This is invoked when using `nx affected -t lint --batch` */ export default function biomeBatchExecutor(taskGraph: TaskGraph, options: Record, _overrides: BiomeExecutorOptions, context: ExecutorContext): Promise>; export {};