modrinthjs
Version:
A type safe Modrinth implementation.
30 lines (29 loc) • 634 B
TypeScript
export type GameVersionTag = {
/**
* The name/number of the game version
*/
version: string;
/**
* The type of the game version
*/
version_type: GameVersionTag.version_type;
/**
* The date of the game version release
*/
date: string;
/**
* Whether or not this is a major version, used for Featured Versions
*/
major: boolean;
};
export declare namespace GameVersionTag {
/**
* The type of the game version
*/
enum version_type {
RELEASE = "release",
SNAPSHOT = "snapshot",
ALPHA = "alpha",
BETA = "beta"
}
}