import { ToolingPackage } from '../internal'; /** * Defines a system that can find all versions of a package * * @export * @interface IAllVersionsOfPackageFinder */ export interface IAllVersionsOfPackageFinder { /** * Gets all the tooling packages in an ascending order of the versions * * @param {string} packageName * * @returns {Promise} */ find(packageName: string): Promise; }