import { ToolingPackage } from '../internal'; /** * Defines a system that can find the latest version of a package compatible with the tooling * * @export * @interface ILatestCompatiblePackageFinder */ export interface ILatestCompatiblePackageFinder { /** * Gets the package.json of the latest version of the package compatible with the tooling * * @param {string} packageName * @param {...string} additionalKeywords * * @returns {Promise} */ find(packageName: string, ...additionalKeywords: string[]): Promise; }