/** * The PROVIDER_TYPES object is a collection of string constants that represent different types of providers * in the system. Each property in the object corresponds to a specific provider type. */ import { type interfaces } from 'inversify'; import { LanguageProfile } from "./code-context/base/LanguageProfile"; import { RelevantCodeProvider } from "./code-context/base/RelevantCodeProvider"; import { HttpApiAnalyser } from "./code-context/base/HttpApiAnalyser"; import { StructurerProvider } from "./code-context/base/StructurerProvider"; export declare const ILanguageProfile: interfaces.ServiceIdentifier; export declare const IRelevantCodeProvider: interfaces.ServiceIdentifier; /** * Code structure analysis, parse source code to structure data * see in {@link StructurerProvider#parseFile} * structure data for {@link CodeElement} which can be {@link CodeFile}, {@link CodeFunction}, {@link CodeVariable} */ export declare const IStructurerProvider: interfaces.ServiceIdentifier; /** * REST API analysis, extract API resources and demands from code structure * see in {@link HttpApiAnalyser#sourceCodeAnalysis} */ export declare const IHttpApiAnalyser: interfaces.ServiceIdentifier;