modrinthjs
Version:
A type safe Modrinth implementation.
19 lines (18 loc) • 360 B
TypeScript
export type Statistics = {
/**
* Number of projects on Modrinth
*/
projects?: number;
/**
* Number of projects on Modrinth
*/
versions?: number;
/**
* Number of version files on Modrinth
*/
files?: number;
/**
* Number of authors (users with projects) on Modrinth
*/
authors?: number;
};