API/api.medcify.app/node_modules/snyk/dist/lib/ecosystems/index.d.ts
2022-09-26 11:41:44 +05:30

16 lines
683 B
TypeScript

import { Options } from '../types';
import { Ecosystem } from './types';
export { testEcosystem } from './test';
export { monitorEcosystem } from './monitor';
export { getPlugin } from './plugins';
/**
* Ecosystems are listed here if you opt in to the new plugin test flow.
* This is a breaking change to the old plugin formats, so only a select few
* plugins currently work with it.
*
* Currently container scanning is not yet ready to work with this flow,
* hence this is in a separate function from getEcosystem().
*/
export declare function getEcosystemForTest(options: Options): Ecosystem | null;
export declare function getEcosystem(options: Options): Ecosystem | null;