/** * Validate No Architecture Cycles Executor * * Validates that the architecture dependency graph has no circular dependencies. * This is a fast check that only validates acyclicity at the project level. * * Usage: * nx run architecture:validate-no-architecture-cycles */ import type { ExecutorContext } from '@nx/devkit'; export interface ValidateNoCyclesOptions { } export interface ExecutorResult { success: boolean; } export default function runExecutor(_options: ValidateNoCyclesOptions, _context: ExecutorContext): Promise;