ow-mod-db/scripts/src/mod-info.d.ts
Noah Pilarski 2c25441e4a
Move hardcoded stuff to db (#728)
* 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
2023-06-30 20:27:10 +01:00

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[];
};