mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-24 07:30:19 +01:00
10 lines
162 B
TypeScript
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];
|