import type { ExecutorContext } from '@nx/devkit'; import type { GenerateExecutorSchema } from './schema'; /** * This executor runs a tool using `go generate` command. * * @param schema options passed to the executor * @param context context passed to the executor */ export default function runExecutor(schema: GenerateExecutorSchema, context: ExecutorContext): Promise<{ success: boolean; }>;