/** * Constants Command - drift constants * * Analyze constants, enums, and exported values across the codebase. * Detects hardcoded secrets, inconsistent values, and magic numbers. * * @requirements Constant & Enum Extraction Feature */ import { Command } from 'commander'; import { type ConstantCategory, type ConstantLanguage, type IssueSeverity } from 'driftdetect-core'; export interface ConstantsOptions { /** Output format */ format?: 'text' | 'json' | 'csv'; /** Filter by category */ category?: ConstantCategory; /** Filter by language */ language?: ConstantLanguage; /** Filter by file path */ file?: string; /** Search by name */ search?: string; /** Filter by exported status */ exported?: boolean; /** Minimum severity for secrets */ severity?: IssueSeverity; /** Limit results */ limit?: number; /** Enable verbose output */ verbose?: boolean; } /** * Create the constants command with subcommands */ export declare const constantsCommand: Command; //# sourceMappingURL=constants.d.ts.map