Made interface that represents Modrinth loader

This commit is contained in:
Kir_Antipov 2023-04-25 15:13:01 +00:00
parent 3bb4e7f7f9
commit a54abaa274

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