API/api.medcify.app/node_modules/snyk/dist/lib/ecosystems/index.d.ts

16 lines
683 B
TypeScript
Raw Normal View History

2022-09-26 06:11:44 +00:00
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;