/** * Validate Architecture Unchanged Executor * * Validates that the current architecture graph matches the saved blessed graph. * This ensures no unapproved architecture changes have been made. * * Usage: * nx run architecture:validate-architecture-unchanged */ import type { ExecutorContext } from '@nx/devkit'; export interface ValidateArchitectureUnchangedOptions { graphPath?: string; } export interface ExecutorResult { success: boolean; } export default function runExecutor(options: ValidateArchitectureUnchangedOptions, context: ExecutorContext): Promise;