/** * WPF Command - drift wpf * * Analyze WPF applications: bindings, MVVM compliance, data flow. * * @requirements WPF Framework Support */ import { Command } from 'commander'; export interface WpfOptions { /** Output format */ format?: 'text' | 'json'; /** Enable verbose output */ verbose?: boolean; /** Show only unresolved bindings */ unresolvedOnly?: boolean; } /** * Create the WPF command */ export declare function createWpfCommand(): Command; //# sourceMappingURL=wpf.d.ts.map