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
/
RegistryReleaseChannel.d.ts
18 lines
(17 loc)
•
327 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** * Represents the release channel of a {@link RegistryVersion}. */
export
declare
const
enum
RegistryReleaseChannel
{
/** * Stable release channel. */
RELEASE =
"release"
,
/** * Beta release channel. */
BETA =
"beta"
,
/** * Alpha release channel. */
ALPHA =
"alpha"
}