UNPKG

libmodpm

Version:

Modrinth package manager library

18 lines (17 loc) 300 B
/** * Represents a package published on the registry. */ export interface RegistryPackage { /** * Unique ID of the package. */ id: string; /** * Name of the package. */ title: string; /** * Description of the package. */ description: string; }