/** * Gate Command * * @license Apache-2.0 * * CLI command for running quality gates on code changes. * * Usage: * drift gate # Run with default policy * drift gate --policy strict # Run with strict policy * drift gate --format sarif # Output in SARIF format * drift gate --ci # CI mode with JSON output */ import { Command } from 'commander'; export interface GateCommandOptions { policy?: string; gates?: string; format?: string; ci?: boolean; verbose?: boolean; dryRun?: boolean; staged?: boolean; output?: string; failOn?: string; files?: string[]; root?: string; } /** * Create the gate command. */ export declare function createGateCommand(): Command; export default createGateCommand; //# sourceMappingURL=gate.d.ts.map