diff --git a/src/platforms/modrinth/modrinth-loader.ts b/src/platforms/modrinth/modrinth-loader.ts new file mode 100644 index 0000000..394806a --- /dev/null +++ b/src/platforms/modrinth/modrinth-loader.ts @@ -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[]; +}