modrinthjs
Version:
A type safe Modrinth implementation.
25 lines (24 loc) • 532 B
TypeScript
import type { CreatableProject } from './CreatableProject';
export type CreateProjectBody = {
data: CreatableProject;
/**
* Project icon file
*/
icon?: CreateProjectBody.icon;
};
export declare namespace CreateProjectBody {
/**
* Project icon file
*/
enum icon {
_PNG = "*.png",
_JPG = "*.jpg",
_JPEG = "*.jpeg",
_BMP = "*.bmp",
_GIF = "*.gif",
_WEBP = "*.webp",
_SVG = "*.svg",
_SVGZ = "*.svgz",
_RGB = "*.rgb"
}
}