UNPKG

modrinthjs

Version:
13 lines (12 loc) 311 B
import type { Project } from './Project'; import type { Version } from './Version'; export type ProjectDependencyList = { /** * Projects that the project depends upon */ projects?: Array<Project>; /** * Versions that the project depends upon */ versions?: Array<Version>; };