15 lines
453 B
JavaScript
15 lines
453 B
JavaScript
// src/enums/image-format.ts
|
|
var ImageFormat = /* @__PURE__ */ ((ImageFormat2) => {
|
|
ImageFormat2["Jpg"] = "jpg";
|
|
ImageFormat2["Jpeg"] = "jpeg";
|
|
ImageFormat2["Png"] = "png";
|
|
ImageFormat2["Webp"] = "webp";
|
|
ImageFormat2["Heic"] = "heic";
|
|
ImageFormat2["Avif"] = "avif";
|
|
ImageFormat2["Gif"] = "gif";
|
|
return ImageFormat2;
|
|
})(ImageFormat || {});
|
|
|
|
export { ImageFormat };
|
|
//# sourceMappingURL=out.js.map
|
|
//# sourceMappingURL=image-format.mjs.map
|