UNPKG

node-apis

Version:

🚀 Advanced TypeScript API generator with clean architecture, comprehensive testing, and automatic formatting. Generate production-ready Node.js APIs with complete integration test suites.

18 lines • 614 B
/** * Module detection service */ import { ExistingModule, ModuleDetectionInput } from '../types/common.types'; /** * Detects if a module already exists and returns information about it */ export declare const detectExistingModule: ({ moduleName, baseDir, framework, }: ModuleDetectionInput & { framework?: string; }) => Promise<ExistingModule | null>; /** * Gets a list of existing modules in the project */ export declare const getExistingModules: ({ baseDir, framework, }?: { baseDir?: string; framework?: string; }) => Promise<string[]>; //# sourceMappingURL=module-detection.service.d.ts.map