1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-24 07:30:19 +01:00
upscayl/renderer/lib/valid-formats.ts
2024-10-06 12:45:44 +05:30

10 lines
162 B
TypeScript

export const VALID_IMAGE_FORMATS = [
"png",
"jpg",
"jpeg",
"jfif",
"webp",
] as const;
export type ImageFormat = (typeof VALID_IMAGE_FORMATS)[number];