mc-publish/src/platforms/modrinth/modrinth-loader.ts
2023-05-17 19:47:33 +03:00

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