UNPKG
libmodpm
Version:
latest (0.4.0)
0.4.0
0.3.1
0.3.0
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0
Modrinth package manager library
github.com/modpm/lib
modpm/lib
libmodpm
/
dist
/
registry
/
RegistryPackage.d.ts
18 lines
(17 loc)
•
300 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** * 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
; }