index.d.ts 683 B

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