mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 00:11:02 -05:00
Made interface that represents Modrinth loader
This commit is contained in:
parent
3bb4e7f7f9
commit
a54abaa274
1 changed files with 19 additions and 0 deletions
19
src/platforms/modrinth/modrinth-loader.ts
Normal file
19
src/platforms/modrinth/modrinth-loader.ts
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/**
|
||||||
|
* Represents a Modrinth loader.
|
||||||
|
*/
|
||||||
|
export interface ModrinthLoader {
|
||||||
|
/**
|
||||||
|
* The SVG icon of the loader.
|
||||||
|
*/
|
||||||
|
icon: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name of the loader.
|
||||||
|
*/
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The project types that this loader is applicable to.
|
||||||
|
*/
|
||||||
|
supported_project_types: string[];
|
||||||
|
}
|
Loading…
Reference in a new issue