mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2025-01-07 14:24:51 -05:00
20 lines
328 B
TypeScript
20 lines
328 B
TypeScript
|
/**
|
||
|
* 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[];
|
||
|
}
|