Add modUrl for mod data

This commit is contained in:
Dev 2024-01-26 22:37:40 +00:00
parent 3ac5a6e41a
commit 26ebe6cfca
2 changed files with 2 additions and 0 deletions

View File

@ -210,6 +210,7 @@ export interface ModDetails
version: string;
author: string;
dateAdded: number;
url: string;
}
export interface ReceivedGift

View File

@ -6,6 +6,7 @@ export interface IPackageJsonData
dependencies?: Record<string, string>;
modDependencies?: Record<string, string>;
name: string;
modUrl: string;
author: string;
version: string;
akiVersion: string;