mirror of
https://github.com/Radiquum/YAMPD.git
synced 2025-05-20 23:59:35 +05:00
15 lines
No EOL
288 B
TypeScript
15 lines
No EOL
288 B
TypeScript
import { ModFile } from "./file";
|
|
|
|
export type Mod = {
|
|
"slug": string,
|
|
"icon": string,
|
|
"title":string,
|
|
"developers": string[],
|
|
"source": string,
|
|
"url": string,
|
|
"environment": {
|
|
"client": boolean,
|
|
"server": boolean,
|
|
},
|
|
"file": ModFile,
|
|
} |