mirror of
https://github.com/ow-mods/ow-mod-db.git
synced 2025-12-11 20:15:24 +01:00
* Move download count offset and first release date override No longer hardcoded * Add CR offset and override because fork * Move repo variations from website to db * convert to url * Doesn't require update
20 lines
370 B
TypeScript
20 lines
370 B
TypeScript
export type ModList = {
|
|
$schema: string;
|
|
mods: ModInfo[];
|
|
};
|
|
|
|
export type ModInfo = {
|
|
name: string;
|
|
uniqueName: string;
|
|
repo: string;
|
|
alpha?: boolean;
|
|
required?: boolean;
|
|
utility?: boolean;
|
|
parent?: string;
|
|
authorDisplay?: string;
|
|
tags: string[];
|
|
downloadCountOffset?: number;
|
|
firstReleaseDateOverride?: string;
|
|
repoVariations?: string[];
|
|
};
|