@cyclonedx/cdxgen
Version:
Creates CycloneDX Software Bill of Materials (SBOM) from source or container image
30 lines • 817 B
TypeScript
export namespace mcpConfigParser {
export let id: string;
export { MCP_CONFIG_PATTERNS as patterns };
export function parse(files: any, _options?: {}): {
components: {
"bom-ref": string;
name: any;
properties: {
name: string;
value: any;
}[];
type: string;
}[];
services: {
"bom-ref": string;
authenticated: boolean | undefined;
endpoints: string[];
group: string;
name: any;
properties: {
name: string;
value: any;
}[];
version: string;
}[];
};
}
declare const MCP_CONFIG_PATTERNS: string[];
export {};
//# sourceMappingURL=mcpConfigParser.d.ts.map