/** * Test Topology Runner - Analyzes test-to-code mappings * * Uses the same analysis flow as `drift test-topology build` to ensure * the saved format is compatible with `drift test-topology status`. * * @module commands/setup/runners/test-topology */ import { BaseRunner, type RunnerContext } from './base.js'; import { type FeatureResult } from '../types.js'; export declare class TestTopologyRunner extends BaseRunner { constructor(ctx: RunnerContext); get name(): string; get icon(): string; get description(): string; get benefit(): string; get manualCommand(): string; run(): Promise; } //# sourceMappingURL=test-topology.d.ts.map