mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2025-01-06 05:44:51 -05:00
26 lines
542 B
TypeScript
26 lines
542 B
TypeScript
/**
|
|
* Represents a Modrinth game version.
|
|
*/
|
|
export interface ModrinthGameVersion {
|
|
/**
|
|
* The name/number of the game version.
|
|
*/
|
|
version: string;
|
|
|
|
/**
|
|
* The type of the game version.
|
|
*/
|
|
version_type: "release" | "snapshot" | "alpha" | "beta";
|
|
|
|
/**
|
|
* The date of the game version release.
|
|
*
|
|
* @remarks The date should be in the ISO-8601 format.
|
|
*/
|
|
date: string;
|
|
|
|
/**
|
|
* Whether or not this is a major version, used for Featured Versions.
|
|
*/
|
|
major: boolean;
|
|
}
|