/** * TypeScript Command - drift ts * * Analyze TypeScript/JavaScript projects: routes, components, hooks, error handling, data access. * * @requirements TypeScript Language Support */ import { Command } from 'commander'; export interface TsOptions { /** Output format */ format?: 'text' | 'json'; /** Enable verbose output */ verbose?: boolean; /** Filter by framework */ framework?: string; } /** * Create the TypeScript command */ export declare function createTsCommand(): Command; //# sourceMappingURL=ts.d.ts.map