/** * Dependency Parsers Module Exports */ export * from './base'; export * from './javascript'; export * from './python'; export * from './php'; export * from './java'; export * from './cpp'; export * from './csharp'; import { DependencyParser } from '../types'; /** * Get all dependency parsers */ export declare function getAllDependencyParsers(): DependencyParser[]; /** * Get parser for a specific file */ export declare function getParserForFile(fileName: string): DependencyParser | undefined; /** * Get all supported manifest file names */ export declare function getSupportedManifestFiles(): string[]; //# sourceMappingURL=index.d.ts.map