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