mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 12:20:20 +01:00
22 lines
255 B
TypeScript
22 lines
255 B
TypeScript
export const IMAGE_DECODE_FORMATS = new Set([
|
|
".bmp",
|
|
".gif",
|
|
".ico",
|
|
".jpeg",
|
|
".jpg",
|
|
".png",
|
|
".psd",
|
|
".tiff",
|
|
".xcf",
|
|
]);
|
|
|
|
export const IMAGE_ENCODE_FORMATS = [
|
|
".bmp",
|
|
".gif",
|
|
".jpg",
|
|
".png",
|
|
".psd",
|
|
".svg",
|
|
".tiff",
|
|
];
|