importtype { Project } from'./Project';
importtype { Version } from'./Version';
exporttypeProjectDependencyList = {
/**
* Projects that the project depends upon
*/projects?: Array<Project>;
/**
* Versions that the project depends upon
*/versions?: Array<Version>;
};