mirror of
https://github.com/Radiquum/YAMPD.git
synced 2025-05-20 23:59:35 +05:00
13 lines
227 B
TypeScript
13 lines
227 B
TypeScript
import { Mod } from "./mod";
|
|
|
|
export type Pack = {
|
|
_id: string;
|
|
formatVersion: number;
|
|
modpackVersion: number;
|
|
title: string;
|
|
author: string;
|
|
version: string;
|
|
modloader: string;
|
|
updateURL: "";
|
|
mods: Mod[];
|
|
};
|